enregistrement
Entreprises radiées
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":"entreprises-radiees",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/entreprises-radiees"
}
] - "definitions":{
- "entreprises-radiees":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/entreprises-radiees_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"
}
}
} - "entreprises-radiees_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "denomination":,{
- "type":"string",
- "title":"Dénomination",
- "description":""
} - "siren":,{
- "type":"string",
- "title":"Siren",
- "description":""
} - "nic":,{
- "type":"string",
- "title":"Nic",
- "description":""
} - "forme_juridique":,{
- "type":"string",
- "title":"Forme Juridique",
- "description":""
} - "code_ape":,{
- "type":"string",
- "title":"Code APE",
- "description":""
} - "secteur_d_activite":,{
- "type":"string",
- "title":"Secteur d'activité",
- "description":""
} - "adresse":,{
- "type":"string",
- "title":"Adresse",
- "description":""
} - "code_postal":,{
- "type":"string",
- "title":"Code postal",
- "description":""
} - "ville":,{
- "type":"string",
- "title":"Ville",
- "description":""
} - "num_dept":,{
- "type":"string",
- "title":"Num. dept.",
- "description":""
} - "departement":,{
- "type":"string",
- "title":"Département",
- "description":""
} - "region":,{
- "type":"string",
- "title":"Région",
- "description":""
} - "code_greffe":,{
- "type":"string",
- "title":"Code Greffe",
- "description":""
} - "greffe":,{
- "type":"string",
- "title":"Greffe",
- "description":""
} - "date_immatriculation":,{
- "type":"string",
- "format":"date",
- "title":"Date immatriculation",
- "description":""
} - "date_radiation":,{
- "type":"string",
- "format":"date",
- "title":"Date radiation",
- "description":""
} - "statut":,{
- "type":"string",
- "title":"Statut",
- "description":""
} - "geolocalisation":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Geolocalisation",
- "description":""
} - "date_de_publication":,{
- "type":"string",
- "format":"date",
- "title":"Date de publication",
- "description":""
} - "nom_commercial":,{
- "type":"string",
- "title":"Nom commercial",
- "description":""
} - "date_immatriculation_origine":,{
- "type":"string",
- "format":"date",
- "title":"Date immatriculation origine",
- "description":""
} - "sigle":,{
- "type":"string",
- "title":"Sigle",
- "description":""
} - "devise":,{
- "type":"string",
- "title":"Devise",
- "description":""
} - "duree":,{
- "type":"string",
- "title":"Durée",
- "description":""
} - "date_cloture_1er_exercice":,{
- "type":"string",
- "format":"date",
- "title":"Date cloture 1er exercice",
- "description":""
} - "date_arrete_des_comptes":,{
- "type":"string",
- "format":"date",
- "title":"Date arreté des comptes",
- "description":""
} - "etat":,{
- "type":"string",
- "title":"Etat",
- "description":""
} - "etat_pub":{
- "type":"string",
- "title":"etat_pub",
- "description":""
}
} - "denomination":
}
} - "fields":
} - "properties":
} - "entreprises-radiees":
}
Soumettre une réutilisation
Cliquez pour déplier Cliquez pour replier
Connectez-vous pour proposer une réutilisation.