World Population
Dataset schema
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
- "title":"world-population",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/world-population"
}
] - "definitions":{
- "world-population":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/world-population_records"
}
}
} - "records":
} - "properties":
- "world-population_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "year":,{
- "type":"string",
- "format":"date",
- "title":"Year",
- "description":""
} - "country_name":,{
- "type":"string",
- "title":"Country Name",
- "description":""
} - "value":{
- "type":"number",
- "title":"Population",
- "description":""
}
} - "year":
}
} - "fields":
} - "properties":
} - "world-population":