records
Liste des pays et territoires
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"curiexplore-pays",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/curiexplore-pays"
}
] - "definitions":{
- "curiexplore-pays":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/curiexplore-pays_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "curiexplore-pays_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "iso3":,{
- "type":"string",
- "title":"iso3",
- "description":""
} - "name_en":,{
- "type":"string",
- "title":"name_en",
- "description":""
} - "name_fr":,{
- "type":"string",
- "title":"name_fr",
- "description":""
} - "name_native":,{
- "type":"string",
- "title":"name_native",
- "description":""
} - "iso2":,{
- "type":"string",
- "title":"iso2",
- "description":""
} - "borders":,{
- "type":"string",
- "title":"borders",
- "description":""
} - "flag":,{
- "type":"string",
- "title":"flag",
- "description":""
} - "latlng":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"latlng",
- "description":""
} - "wikidata":,{
- "type":"string",
- "title":"wikidata",
- "description":""
} - "bologne":,{
- "type":"string",
- "title":"bologne",
- "description":""
} - "embassy":,{
- "type":"string",
- "title":"embassy",
- "description":""
} - "arab_world":,{
- "type":"string",
- "title":"arab_world",
- "description":""
} - "central_europe_and_the_baltics":,{
- "type":"string",
- "title":"central_europe_and_the_baltics",
- "description":""
} - "east_asia_pacific":,{
- "type":"string",
- "title":"east_asia_pacific",
- "description":""
} - "euro_area":,{
- "type":"string",
- "title":"euro_area",
- "description":""
} - "europe_central_asia":,{
- "type":"string",
- "title":"europe_central_asia",
- "description":""
} - "european_union":,{
- "type":"string",
- "title":"european_union",
- "description":""
} - "high_income":,{
- "type":"string",
- "title":"high_income",
- "description":""
} - "latin_america_caribbean":,{
- "type":"string",
- "title":"latin_america_caribbean",
- "description":""
} - "low_income":,{
- "type":"string",
- "title":"low_income",
- "description":""
} - "lower_middle_income":,{
- "type":"string",
- "title":"lower_middle_income",
- "description":""
} - "middle_east_north_africa":,{
- "type":"string",
- "title":"middle_east_north_africa",
- "description":""
} - "north_america":,{
- "type":"string",
- "title":"north_america",
- "description":""
} - "oecd_members":,{
- "type":"string",
- "title":"oecd_members",
- "description":""
} - "sub_saharan_africa":,{
- "type":"string",
- "title":"sub_saharan_africa",
- "description":""
} - "upper_middle_income":,{
- "type":"string",
- "title":"upper_middle_income",
- "description":""
} - "world":,{
- "type":"string",
- "title":"world",
- "description":""
} - "link":,{
- "type":"string",
- "title":"link",
- "description":""
} - "website":,{
- "type":"string",
- "title":"website",
- "description":""
} - "south_america":,{
- "type":"string",
- "title":"south_america",
- "description":""
} - "central_america_caraibes":,{
- "type":"string",
- "title":"central_america_caraibes",
- "description":""
} - "cocac":,{
- "type":"string",
- "title":"cocac",
- "description":""
} - "continental_europe":,{
- "type":"string",
- "title":"continental_europe",
- "description":""
} - "asia_oceania":,{
- "type":"string",
- "title":"asia_oceania",
- "description":""
} - "cf_mobility":,{
- "type":"string",
- "title":"cf_mobility",
- "description":""
} - "idpaysage":,{
- "type":"string",
- "title":"idpaysage",
- "description":""
} - "curiexplore":,{
- "type":"string",
- "title":"curiexplore",
- "description":""
} - "idh_group":,{
- "type":"string",
- "title":"idh_group",
- "description":""
} - "idh_group_countries":,{
- "type":"string",
- "title":"idh_group_countries",
- "description":""
} - "ue27":,{
- "type":"string",
- "title":"ue27",
- "description":""
} - "g7":,{
- "type":"string",
- "title":"g7",
- "description":""
} - "g20":,{
- "type":"string",
- "title":"g20",
- "description":""
} - "geometry":{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"geometry",
- "description":""
}
} - "iso3":
}
} - "fields":
} - "properties":
} - "curiexplore-pays":
}