enregistrement
Etablissements EHPAD, ESLD (établissement de soin longue durée) et RA (résidence autonomie)
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":"etablissements-ehpad-esld-etablissement-de-soin-longue-duree-et-ra-residence-aut",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/etablissements-ehpad-esld-etablissement-de-soin-longue-duree-et-ra-residence-aut"
}
] - "definitions":{
- "etablissements-ehpad-esld-etablissement-de-soin-longue-duree-et-ra-residence-aut":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/etablissements-ehpad-esld-etablissement-de-soin-longue-duree-et-ra-residence-aut_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"
}
}
} - "etablissements-ehpad-esld-etablissement-de-soin-longue-duree-et-ra-residence-aut_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "gid":,{
- "type":"integer",
- "title":"gid",
- "description":""
} - "nofinesset":,{
- "type":"integer",
- "title":"nofinesset",
- "description":""
} - "raison_sociale":,{
- "type":"string",
- "title":"raison_sociale",
- "description":""
} - "tel":,{
- "type":"string",
- "title":"tel",
- "description":""
} - "site":,{
- "type":"string",
- "title":"site",
- "description":""
} - "courriel":,{
- "type":"string",
- "title":"courriel",
- "description":""
} - "gestionnaire":,{
- "type":"string",
- "title":"gestionnaire",
- "description":""
} - "datemaj":,{
- "type":"string",
- "format":"date",
- "title":"dateMaj",
- "description":""
} - "is_ehpad":,{
- "type":"integer",
- "title":"is_ehpad",
- "description":""
} - "is_usld":,{
- "type":"integer",
- "title":"is_usld",
- "description":""
} - "is_ra":,{
- "type":"integer",
- "title":"is_ra",
- "description":""
} - "is_acc_jour":,{
- "type":"integer",
- "title":"is_acc_jour",
- "description":""
} - "statut_jur":,{
- "type":"string",
- "title":"statut_jur",
- "description":""
} - "is_aide_soc":,{
- "type":"integer",
- "title":"is_aide_soc",
- "description":""
} - "is_apl":,{
- "type":"integer",
- "title":"is_apl",
- "description":""
} - "is_apa":,{
- "type":"integer",
- "title":"is_apa",
- "description":""
} - "is_alzh":,{
- "type":"integer",
- "title":"is_alzh",
- "description":""
} - "is_pasa":,{
- "type":"integer",
- "title":"is_pasa",
- "description":""
} - "is_uhr":,{
- "type":"integer",
- "title":"is_uhr",
- "description":""
} - "is_handi_vieil":,{
- "type":"integer",
- "title":"is_handi_vieil",
- "description":""
} - "is_pfr":,{
- "type":"integer",
- "title":"is_pfr",
- "description":""
} - "is_acc_tempo":,{
- "type":"integer",
- "title":"is_acc_tempo",
- "description":""
} - "is_heb_perma":,{
- "type":"integer",
- "title":"is_heb_perma",
- "description":""
} - "is_heb_tempo":,{
- "type":"integer",
- "title":"is_heb_tempo",
- "description":""
} - "is_puv":,{
- "type":"integer",
- "title":"is_puv",
- "description":""
} - "capa_totale":,{
- "type":"integer",
- "title":"capa_totale",
- "description":""
} - "capa_complet":,{
- "type":"integer",
- "title":"capa_complet",
- "description":""
} - "capa_tempo":,{
- "type":"integer",
- "title":"capa_tempo",
- "description":""
} - "capa_acc":,{
- "type":"integer",
- "title":"capa_acc",
- "description":""
} - "cap_log_f1":,{
- "type":"integer",
- "title":"cap_log_f1",
- "description":""
} - "cap_log_f2":,{
- "type":"integer",
- "title":"cap_log_f2",
- "description":""
} - "cap_log_f1_bis":,{
- "type":"integer",
- "title":"cap_log_f1_bis",
- "description":""
} - "adr_num_voie":,{
- "type":"string",
- "title":"adr_num_voie",
- "description":""
} - "adr_type_voie":,{
- "type":"string",
- "title":"adr_type_voie",
- "description":""
} - "adr_nom_voie":,{
- "type":"string",
- "title":"adr_nom_voie",
- "description":""
} - "adr_lieu_dit":,{
- "type":"string",
- "title":"adr_lieu_dit",
- "description":""
} - "adr_cp":,{
- "type":"string",
- "title":"adr_cp",
- "description":""
} - "adr_ville":,{
- "type":"string",
- "title":"adr_ville",
- "description":""
} - "prixhebpermcs":,{
- "type":"number",
- "title":"prixHebPermCs",
- "description":""
} - "prixhebpermcd":,{
- "type":"number",
- "title":"prixHebPermCd",
- "description":""
} - "prixhebpermcsa":,{
- "type":"number",
- "title":"prixHebPermCsa",
- "description":""
} - "prixhebpermcda":,{
- "type":"number",
- "title":"prixHebPermCda",
- "description":""
} - "prixhebtempcs":,{
- "type":"number",
- "title":"prixHebTempCs",
- "description":""
} - "prixhebtempcd":,{
- "type":"number",
- "title":"prixHebTempCd",
- "description":""
} - "prixhebtempcsa":,{
- "type":"number",
- "title":"prixHebTempCsa",
- "description":""
} - "prixhebtempcda":,{
- "type":"number",
- "title":"prixHebTempCda",
- "description":""
} - "autreprestation":,{
- "type":"string",
- "title":"autrePrestation",
- "description":""
} - "autretarifprest":,{
- "type":"string",
- "title":"autreTarifPrest",
- "description":""
} - "tarifgir12":,{
- "type":"number",
- "title":"tarifGir12",
- "description":""
} - "tarifgir34":,{
- "type":"number",
- "title":"tarifGir34",
- "description":""
} - "tarifgir56":,{
- "type":"number",
- "title":"tarifGir56",
- "description":""
} - "prixf1":,{
- "type":"number",
- "title":"prixF1",
- "description":""
} - "prixf1ash":,{
- "type":"string",
- "title":"prixF1ASH",
- "description":""
} - "prixf1bis":,{
- "type":"number",
- "title":"prixF1Bis",
- "description":""
} - "prixf1bisash":,{
- "type":"number",
- "title":"prixF1BisASH",
- "description":""
} - "prixf2":,{
- "type":"number",
- "title":"prixF2",
- "description":""
} - "prixf2ash":,{
- "type":"string",
- "title":"prixF2ASH",
- "description":""
} - "prestobligatoire":,{
- "type":"string",
- "title":"prestObligatoire",
- "description":""
} - "geo_point":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geo_point",
- "description":""
}
} - "gid":
}
} - "fields":
} - "properties":
} - "etablissements-ehpad-esld-etablissement-de-soin-longue-duree-et-ra-residence-aut":
}