enregistrement
Événements publics en Île-de-France (via Open Agenda)
Modèle de données
Cliquez pour déplier Cliquez pour replier
Schéma JSON
L'objet JSON ci dessous est une description standardisée du modèle de votre jeu de données. Pour en savoir plus sur JSON schema.
{
- "title":"evenements-publics-cibul",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/evenements-publics-cibul"
}
] - "definitions":{
- "evenements-publics-cibul":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/evenements-publics-cibul_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"
}
}
} - "evenements-publics-cibul_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "uid":,{
- "type":"string",
- "title":"ID",
- "description":""
} - "slug":,{
- "type":"string",
- "title":"Slug",
- "description":""
} - "canonicalurl":,{
- "type":"string",
- "title":"URL",
- "description":""
} - "title_fr":,{
- "type":"string",
- "title":"Title",
- "description":""
} - "description_fr":,{
- "type":"string",
- "title":"Description",
- "description":""
} - "longdescription_fr":,{
- "type":"string",
- "title":"Long description",
- "description":""
} - "conditions_fr":,{
- "type":"string",
- "title":"Details",
- "description":""
} - "keywords_fr":,{
- "type":"string",
- "title":"Keywords",
- "description":""
} - "image":,{
- "type":"string",
- "title":"Image",
- "description":""
} - "imagecredits":,{
- "type":"string",
- "title":"Credits for the image",
- "description":""
} - "thumbnail":,{
- "type":"string",
- "title":"Preview",
- "description":""
} - "originalimage":,{
- "type":"string",
- "title":"Source image",
- "description":""
} - "updatedat":,{
- "type":"string",
- "format":"date-time",
- "title":"Last update",
- "description":""
} - "daterange_fr":,{
- "type":"string",
- "title":"Times",
- "description":""
} - "firstdate_begin":,{
- "type":"string",
- "format":"date-time",
- "title":"First date - Beginning",
- "description":""
} - "firstdate_end":,{
- "type":"string",
- "format":"date-time",
- "title":"First date - End",
- "description":""
} - "lastdate_begin":,{
- "type":"string",
- "format":"date-time",
- "title":"Last date - Beginning",
- "description":""
} - "lastdate_end":,{
- "type":"string",
- "format":"date-time",
- "title":"Last date - End",
- "description":""
} - "timings":,{
- "type":"string",
- "title":"Detailed times",
- "description":""
} - "accessibility":,{
- "type":"string",
- "title":"Accessibility code",
- "description":""
} - "accessibility_label_fr":,{
- "type":"string",
- "title":"Accessibility",
- "description":""
} - "location_uid":,{
- "type":"string",
- "title":"Place ID",
- "description":""
} - "location_coordinates":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Coordinates",
- "description":""
} - "location_name":,{
- "type":"string",
- "title":"Place name",
- "description":""
} - "location_address":,{
- "type":"string",
- "title":"Address",
- "description":""
} - "location_district":,{
- "type":"string",
- "title":"Arrondissement",
- "description":""
} - "location_insee":,{
- "type":"string",
- "title":"INSEE code",
- "description":""
} - "location_postalcode":,{
- "type":"string",
- "title":"Postal code",
- "description":""
} - "location_city":,{
- "type":"string",
- "title":"City",
- "description":""
} - "location_department":,{
- "type":"string",
- "title":"Department",
- "description":""
} - "location_region":,{
- "type":"string",
- "title":"Region",
- "description":""
} - "location_countrycode":,{
- "type":"string",
- "title":"Country",
- "description":""
} - "location_image":,{
- "type":"string",
- "title":"Place image",
- "description":""
} - "location_imagecredits":,{
- "type":"string",
- "title":"Credits for the place image",
- "description":""
} - "location_phone":,{
- "type":"string",
- "title":"Phone number",
- "description":""
} - "location_website":,{
- "type":"string",
- "title":"Place website",
- "description":""
} - "location_links":,{
- "type":"string",
- "title":"Place links",
- "description":""
} - "location_tags":,{
- "type":"string",
- "title":"Place tags",
- "description":""
} - "location_description_fr":,{
- "type":"string",
- "title":"Place description",
- "description":""
} - "location_access_fr":,{
- "type":"string",
- "title":"Access",
- "description":""
} - "attendancemode":,{
- "type":"string",
- "title":"Physical or online event",
- "description":""
} - "onlineaccesslink":,{
- "type":"string",
- "title":"Online access link",
- "description":""
} - "status":,{
- "type":"string",
- "title":"Status",
- "description":""
} - "age_min":,{
- "type":"integer",
- "title":"Minimum age",
- "description":""
} - "age_max":,{
- "type":"integer",
- "title":"Maximum age",
- "description":""
} - "originagenda_title":,{
- "type":"string",
- "title":"Source agenda (title)",
- "description":""
} - "originagenda_uid":,{
- "type":"string",
- "title":"Source agenda (uid)",
- "description":""
} - "contributor_email":,{
- "type":"string",
- "title":"Contributor email",
- "description":""
} - "contributor_contactnumber":,{
- "type":"string",
- "title":"Contributor phone number",
- "description":""
} - "contributor_contactname":,{
- "type":"string",
- "title":"Contributor name",
- "description":""
} - "contributor_contactposition":,{
- "type":"string",
- "title":"Contributor function",
- "description":""
} - "contributor_organization":,{
- "type":"string",
- "title":"Contributor organisation",
- "description":""
} - "category":,{
- "type":"string",
- "title":"Category",
- "description":""
} - "country_fr":,{
- "type":"string",
- "title":"Country name",
- "description":""
} - "registration":,{
- "type":"string",
- "title":"Registration",
- "description":""
} - "links":{
- "type":"string",
- "title":"Additionnal links",
- "description":""
}
} - "uid":
}
} - "fields":
} - "properties":
} - "evenements-publics-cibul":
}