enregistrement
Annuaire des associations et clubs proposant une activité parasportive
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":"annuaire-des-associations-et-clubs-proposant-une-activite-parasportive",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/annuaire-des-associations-et-clubs-proposant-une-activite-parasportive"
}
] - "definitions":{
- "annuaire-des-associations-et-clubs-proposant-une-activite-parasportive":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/annuaire-des-associations-et-clubs-proposant-une-activite-parasportive_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"
}
}
} - "annuaire-des-associations-et-clubs-proposant-une-activite-parasportive_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "geo_point_2d":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Geo Point",
- "description":""
} - "geo_shape":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Geo Shape",
- "description":""
} - "nom_de_l_a":,{
- "type":"string",
- "title":"Nom de l'association",
- "description":""
} - "adresse":,{
- "type":"string",
- "title":"Adresse",
- "description":""
} - "cp":,{
- "type":"integer",
- "title":"Code postal",
- "description":""
} - "ville":,{
- "type":"string",
- "title":"Ville",
- "description":""
} - "lieu_de_pr":,{
- "type":"string",
- "title":"Lieu de pratique",
- "description":""
} - "contact":,{
- "type":"string",
- "title":"Contact",
- "description":""
} - "telephone":,{
- "type":"string",
- "title":"Téléphone",
- "description":""
} - "mail":,{
- "type":"string",
- "title":"Mail",
- "description":""
} - "contact_oz":,{
- "type":"string",
- "title":"Contact oz",
- "description":""
} - "activites":,{
- "type":"string",
- "title":"Activités proposées",
- "description":""
} - "moteur":,{
- "type":"string",
- "title":"Handicap moteur",
- "description":""
} - "sensoriel":,{
- "type":"string",
- "title":"Handicap sensoriel",
- "description":""
} - "intellectu":,{
- "type":"string",
- "title":"Handicap intellectuel",
- "description":""
} - "psychique":,{
- "type":"string",
- "title":"Handicap psychique",
- "description":""
} - "autistique":,{
- "type":"string",
- "title":"Handicap autistique",
- "description":""
} - "loisirs":,{
- "type":"string",
- "title":"Pratique loisirs",
- "description":""
} - "competitio":,{
- "type":"string",
- "title":"Pratique compétition",
- "description":""
} - "sports_col":,{
- "type":"string",
- "title":"Sports collectifs",
- "description":""
} - "sports_de":,{
- "type":"string",
- "title":"Sports de raquette",
- "description":""
} - "sports_nau":,{
- "type":"string",
- "title":"Sports nautiques et aquatiques",
- "description":""
} - "sports_d00":,{
- "type":"string",
- "title":"Sports de combat et d'opposition",
- "description":""
} - "sports_ath":,{
- "type":"string",
- "title":"Sports athlétiques",
- "description":""
} - "sports_d01":,{
- "type":"string",
- "title":"Sports de gymnastique",
- "description":""
} - "salle_de_s":,{
- "type":"string",
- "title":"Salle de sport",
- "description":""
} - "para_sport":,{
- "type":"string",
- "title":"Para-sport",
- "description":""
} - "sports_d02":,{
- "type":"string",
- "title":"Sports de pleine nature",
- "description":""
} - "sports_equ":,{
- "type":"string",
- "title":"Sports équestres",
- "description":""
} - "sports_aer":,{
- "type":"string",
- "title":"Sports aériens",
- "description":""
} - "sports_d03":,{
- "type":"string",
- "title":"Sports de vélo",
- "description":""
} - "sports_d04":,{
- "type":"string",
- "title":"Sports de bien être",
- "description":""
} - "sports_d05":,{
- "type":"string",
- "title":"Sports de glace et de neige",
- "description":""
} - "sports_d06":,{
- "type":"string",
- "title":"Sports de tir",
- "description":""
} - "discipline":,{
- "type":"string",
- "title":"Disciplines artistiques",
- "description":""
} - "interventi":,{
- "type":"string",
- "title":"Intervention à domicile",
- "description":""
} - "divers":{
- "type":"string",
- "title":"Divers",
- "description":""
}
} - "geo_point_2d":
}
} - "fields":
} - "properties":
} - "annuaire-des-associations-et-clubs-proposant-une-activite-parasportive":
}