enregistrement
Liste des objets protégés au titre des Monuments historiques
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":"liste-des-objets-mobiliers-propriete-publique-classes-au-titre-des-monuments",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/liste-des-objets-mobiliers-propriete-publique-classes-au-titre-des-monuments"
}
] - "definitions":{
- "liste-des-objets-mobiliers-propriete-publique-classes-au-titre-des-monuments":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/liste-des-objets-mobiliers-propriete-publique-classes-au-titre-des-monuments_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"
}
}
} - "liste-des-objets-mobiliers-propriete-publique-classes-au-titre-des-monuments_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "reference":,{
- "type":"string",
- "title":"Reference",
- "description":""
} - "contexte_d_acquisition":,{
- "type":"string",
- "title":"Contexte_d_acquisition",
- "description":""
} - "adresse_forme_index":,{
- "type":"string",
- "title":"Adresse_forme_index",
- "description":""
} - "auteur_du_projet":,{
- "type":"string",
- "title":"Auteur_du_projet",
- "description":""
} - "appellation_d_usage":,{
- "type":"string",
- "title":"Appellation_d_usage",
- "description":""
} - "personne_morale_creatrice_de_l_objet":,{
- "type":"string",
- "title":"Personne_morale_creatrice_de_l_objet",
- "description":""
} - "auteur_de_l_oeuvre_ou_createur_de_l_objet":,{
- "type":"string",
- "title":"Auteur_de_l_oeuvre_ou_createur_de_l_objet",
- "description":""
} - "references_de_publications":,{
- "type":"string",
- "title":"References_de_publications",
- "description":""
} - "categorie_technique":,{
- "type":"string",
- "title":"Categorie_technique",
- "description":""
} - "commune_forme_index":,{
- "type":"string",
- "title":"Commune_forme_index",
- "description":""
} - "copyright":,{
- "type":"string",
- "title":"Copyright",
- "description":""
} - "annee_de_creation":,{
- "type":"string",
- "title":"Annee_de_creation",
- "description":""
} - "denomination":,{
- "type":"string",
- "title":"Denomination",
- "description":""
} - "date_du_recolement":,{
- "type":"string",
- "title":"Date_du_recolement",
- "description":""
} - "lieu_de_deplacement_de_l_objet":,{
- "type":"string",
- "title":"Lieu_de_deplacement_de_l_objet",
- "description":""
} - "description":,{
- "type":"string",
- "title":"Description",
- "description":""
} - "dimensions":,{
- "type":"string",
- "title":"Dimensions",
- "description":""
} - "date_de_la_derniere_mise_a_jour":,{
- "type":"string",
- "format":"date",
- "title":"Date_de_la_derniere_mise_a_jour",
- "description":""
} - "date_de_creation_de_la_notice":,{
- "type":"string",
- "format":"date",
- "title":"Date_de_creation_de_la_notice",
- "description":""
} - "domaine":,{
- "type":"string",
- "title":"Domaine",
- "description":""
} - "date_et_typologie_de_la_protection":,{
- "type":"string",
- "title":"Date_et_typologie_de_la_protection",
- "description":""
} - "departement_format_numerique":,{
- "type":"string",
- "title":"Departement_format_numerique",
- "description":""
} - "region":,{
- "type":"string",
- "title":"Région",
- "description":""
} - "departement_en_lettres":,{
- "type":"string",
- "title":"Département",
- "description":""
} - "nom_de_l_edifice":,{
- "type":"string",
- "title":"Nom_de_l_edifice",
- "description":""
} - "emplacement_de_l_oeuvre_dans_l_edifice":,{
- "type":"string",
- "title":"Emplacement_de_l_oeuvre_dans_l_edifice",
- "description":""
} - "etat":,{
- "type":"string",
- "title":"Etat",
- "description":""
} - "cadre_de_l_etude":,{
- "type":"string",
- "title":"Cadre_de_l_etude",
- "description":""
} - "lieu_de_creation":,{
- "type":"string",
- "title":"Lieu_de_creation",
- "description":""
} - "references_d_expositions":,{
- "type":"string",
- "title":"References_d_expositions",
- "description":""
} - "historique":,{
- "type":"string",
- "title":"Historique",
- "description":""
} - "identifiant_agregee":,{
- "type":"string",
- "title":"Identifiant_Agregee",
- "description":""
} - "inscription":,{
- "type":"string",
- "title":"Inscription",
- "description":""
} - "cog_insee":,{
- "type":"string",
- "title":"COG_Insee",
- "description":""
} - "justification_de_la_datation":,{
- "type":"string",
- "title":"Justification_de_la_datation",
- "description":""
} - "liens_externes":,{
- "type":"string",
- "title":"Liens_externes",
- "description":""
} - "lieudit":,{
- "type":"string",
- "title":"Lieudit",
- "description":""
} - "lien_vers_la_base_inha":,{
- "type":"string",
- "title":"Lien_vers_la_base_INHA",
- "description":""
} - "lien_vers_la_base_archiv_mh":,{
- "type":"string",
- "title":"Lien_vers_la_base_Archiv_MH",
- "description":""
} - "statut_juridique_de_l_objet":,{
- "type":"string",
- "title":"Statut_juridique_de_l_objet",
- "description":""
} - "materiaux":,{
- "type":"string",
- "title":"Materiaux",
- "description":""
} - "numero_artificiel_de_differenciation_de_l_objet":,{
- "type":"string",
- "title":"Numero_artificiel_de_differenciation_de_l_objet",
- "description":""
} - "numero_d_inventaire_affecte_a_l_objet":,{
- "type":"string",
- "title":"Numero_d_inventaire_affecte_a_l_objet",
- "description":""
} - "numero_de_l_arrete_de_protection":,{
- "type":"string",
- "title":"Numero_de_l_arrete_de_protection",
- "description":""
} - "observations":,{
- "type":"string",
- "title":"Observations",
- "description":""
} - "lieu_de_provenance":,{
- "type":"string",
- "title":"Lieu_de_provenance",
- "description":""
} - "intitule_de_l_ensemble":,{
- "type":"string",
- "title":"Intitule_de_l_ensemble",
- "description":""
} - "partie_constituante_non_etudiee":,{
- "type":"string",
- "title":"Partie_constituante_non_etudiee",
- "description":""
} - "partie_constituante":,{
- "type":"string",
- "title":"Partie_constituante",
- "description":""
} - "precision_sur_la_denomination":,{
- "type":"string",
- "title":"Precision_sur_la_denomination",
- "description":""
} - "precision_sur_les_dimensions":,{
- "type":"string",
- "title":"Precision_sur_les_dimensions",
- "description":""
} - "personnes_liees_a_l_objet":,{
- "type":"string",
- "title":"Personnes_liees_a_l_objet",
- "description":""
} - "precision_sur_l_etat":,{
- "type":"string",
- "title":"Precision_sur_l_etat",
- "description":""
} - "precision_sur_l_inscription":,{
- "type":"string",
- "title":"Precision_sur_l_inscription",
- "description":""
} - "precision_sur_la_localisation":,{
- "type":"string",
- "title":"Precision_sur_la_localisation",
- "description":""
} - "precision_sur_la_protection":,{
- "type":"string",
- "title":"Precision_sur_la_protection",
- "description":""
} - "precision_sur_la_representation":,{
- "type":"string",
- "title":"Precision_sur_la_representation",
- "description":""
} - "typologie_de_la_protection":,{
- "type":"string",
- "title":"Typologie_de_la_protection",
- "description":""
} - "reference_a_une_notice_merimee_mh":,{
- "type":"string",
- "title":"Reference_a_une_notice_Merimee_MH",
- "description":""
} - "reference_a_un_ensemble":,{
- "type":"string",
- "title":"Reference_a_un_ensemble",
- "description":""
} - "lien_vers_la_base_joconde":,{
- "type":"string",
- "title":"Lien_vers_la_base_Joconde",
- "description":""
} - "lien_vers_la_base_museofile":,{
- "type":"string",
- "title":"Lien_vers_la_base_Museofile",
- "description":""
} - "reference_a_une_partie_constituante":,{
- "type":"string",
- "title":"Reference_a_une_partie_constituante",
- "description":""
} - "renvoi_vers_une_notice_palissy_mh_ou_merimee_mh":,{
- "type":"string",
- "title":"Renvoi_vers_une_notice_Palissy_MH_ou_Merimee_MH",
- "description":""
} - "indexation_iconographique_normalisee":,{
- "type":"string",
- "title":"Indexation_iconographique_normalisee",
- "description":""
} - "siecle_de_creation":,{
- "type":"string",
- "title":"Siecle_de_creation",
- "description":""
} - "format_abrege_du_siecle_de_creation":,{
- "type":"string",
- "title":"Format_abrege_du_siecle_de_creation",
- "description":""
} - "sources_d_archives_et_bases_de_donnees_de_reference":,{
- "type":"string",
- "title":"Sources_d_archives_et_bases_de_donnees_de_reference",
- "description":""
} - "etape_de_creation":,{
- "type":"string",
- "title":"Etape_de_creation",
- "description":""
} - "statut_juridique_du_proprietaire":,{
- "type":"string",
- "title":"Statut_juridique_du_proprietaire",
- "description":""
} - "structure_et_typologie":,{
- "type":"string",
- "title":"Structure_et_typologie",
- "description":""
} - "theme_de_l_etude":,{
- "type":"string",
- "title":"Theme_de_l_etude",
- "description":""
} - "titre_editorial":,{
- "type":"string",
- "title":"Titre_editorial",
- "description":""
} - "titre_iconographique":,{
- "type":"string",
- "title":"Titre_iconographique",
- "description":""
} - "informations_relatives_aux_vols":,{
- "type":"string",
- "title":"Informations_relatives_aux_vols",
- "description":""
} - "adresse_forme_editoriale":,{
- "type":"string",
- "title":"Adresse_forme_editoriale",
- "description":""
} - "commune_forme_editoriale":,{
- "type":"string",
- "title":"Commune",
- "description":""
} - "lien_vers_la_base_arcade":,{
- "type":"string",
- "title":"Lien_vers_la_base_Arcade",
- "description":""
} - "typologie_du_dossier":,{
- "type":"string",
- "title":"Typologie_du_dossier",
- "description":""
} - "code_insee_commune_actuelle":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Code_INSEE_commune_actuelle",
- "description":""
} - "edifice_actuel":,{
- "type":"string",
- "title":"Edifice_actuel",
- "description":""
} - "geo_point_2d":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geo_point_2d",
- "description":""
}
} - "reference":
}
} - "fields":
} - "properties":
} - "liste-des-objets-mobiliers-propriete-publique-classes-au-titre-des-monuments":
}