696 139
enregistrements
Collections des musées de France : base Joconde
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":"base-joconde-extrait",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/base-joconde-extrait"
}
] - "definitions":{
- "base-joconde-extrait":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/base-joconde-extrait_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"
}
}
} - "base-joconde-extrait_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "reference":,{
- "type":"string",
- "title":"Reference",
- "description":""
} - "ancien_depot":,{
- "type":"string",
- "title":"Ancien_depot",
- "description":""
} - "appellation":,{
- "type":"string",
- "title":"Appellation",
- "description":""
} - "ancienne_appartenance":,{
- "type":"string",
- "title":"Ancienne_appartenance",
- "description":""
} - "ancienne_attribution":,{
- "type":"string",
- "title":"Ancienne_attribution",
- "description":""
} - "auteur":,{
- "type":"string",
- "title":"Auteur",
- "description":""
} - "bibliographie":,{
- "type":"string",
- "title":"Bibliographie",
- "description":""
} - "commentaires":,{
- "type":"string",
- "title":"Commentaires",
- "description":""
} - "presence_image":,{
- "type":"string",
- "title":"Presence_image",
- "description":""
} - "date_d_acquisition":,{
- "type":"string",
- "title":"Date_d_acquisition",
- "description":""
} - "date_de_depot":,{
- "type":"string",
- "title":"Date_de_depot",
- "description":""
} - "decouverte_collecte":,{
- "type":"string",
- "title":"Decouverte_collecte",
- "description":""
} - "denomination":,{
- "type":"string",
- "title":"Denomination",
- "description":""
} - "lieu_de_depot":,{
- "type":"string",
- "title":"Lieu_de_depot",
- "description":""
} - "description":,{
- "type":"string",
- "title":"Description",
- "description":""
} - "mesures":,{
- "type":"string",
- "title":"Mesures",
- "description":""
} - "date_de_mise_a_jour":,{
- "type":"string",
- "format":"date",
- "title":"Date_de_mise_a_jour",
- "description":""
} - "date_creation":,{
- "type":"string",
- "format":"date",
- "title":"Date_creation",
- "description":""
} - "domaine":,{
- "type":"string",
- "title":"Domaine",
- "description":""
} - "region":,{
- "type":"string",
- "title":"Region",
- "description":""
} - "departement":,{
- "type":"string",
- "title":"Departement",
- "description":""
} - "date_sujet_represente":,{
- "type":"string",
- "title":"Date_sujet_represente",
- "description":""
} - "ecole_pays":,{
- "type":"string",
- "title":"Ecole_pays",
- "description":""
} - "epoque":,{
- "type":"string",
- "title":"Epoque",
- "description":""
} - "exposition":,{
- "type":"string",
- "title":"Exposition",
- "description":""
} - "genese":,{
- "type":"string",
- "title":"Genese",
- "description":""
} - "geographie_historique":,{
- "type":"string",
- "title":"Geographie_historique",
- "description":""
} - "inscription":,{
- "type":"string",
- "title":"Inscription",
- "description":""
} - "numero_inventaire":,{
- "type":"string",
- "title":"Numero_inventaire",
- "description":""
} - "appellation_musee_de_france":,{
- "type":"string",
- "title":"Appellation_Musee_de_France",
- "description":""
} - "lien_base_arcade":,{
- "type":"string",
- "title":"Lien_base_Arcade",
- "description":""
} - "lieu_de_creation_utilisation":,{
- "type":"string",
- "title":"Lieu_de_creation_utilisation",
- "description":""
} - "localisation":,{
- "type":"string",
- "title":"Localisation",
- "description":""
} - "ville":,{
- "type":"string",
- "title":"Ville",
- "description":""
} - "lien_video":,{
- "type":"string",
- "title":"Lien_Video",
- "description":""
} - "manquant":,{
- "type":"string",
- "title":"MANQUANT",
- "description":"Bien signalé manquant"
} - "manquant_com":,{
- "type":"string",
- "title":"MANQUANT_COM",
- "description":"Commentaires sur le bien manquant"
} - "millesime_de_creation":,{
- "type":"string",
- "title":"Millesime_de_creation",
- "description":""
} - "millesime_d_utilisation":,{
- "type":"string",
- "title":"Millesime_d_utilisation",
- "description":""
} - "code_museofile":,{
- "type":"string",
- "title":"Code_Museofile",
- "description":""
} - "nom_officiel_musee":,{
- "type":"string",
- "title":"Nom_officiel_musee",
- "description":""
} - "genre":,{
- "type":"string",
- "title":"Genre",
- "description":""
} - "onomastique":,{
- "type":"string",
- "title":"Onomastique",
- "description":""
} - "precisions_sur_l_auteur":,{
- "type":"string",
- "title":"Precisions_sur_l_auteur",
- "description":""
} - "precisions_decouverte_collecte":,{
- "type":"string",
- "title":"Precisions_decouverte_collecte",
- "description":""
} - "periode_de_l_original_copie":,{
- "type":"string",
- "title":"Periode_de_l_original_copie",
- "description":""
} - "periode_de_creation":,{
- "type":"string",
- "title":"Periode_de_creation",
- "description":""
} - "periode_d_utilisation":,{
- "type":"string",
- "title":"Periode_d_utilisation",
- "description":""
} - "precisions_inscriptions":,{
- "type":"string",
- "title":"Precisions_inscriptions",
- "description":""
} - "precisions_lieux_creations":,{
- "type":"string",
- "title":"Precisions_lieux_creations",
- "description":""
} - "precisions_sujets_representes":,{
- "type":"string",
- "title":"Precisions_sujets_representes",
- "description":""
} - "precisions_utilisation":,{
- "type":"string",
- "title":"Precisions_utilisation",
- "description":""
} - "references_memoires":,{
- "type":"string",
- "title":"References_Memoires",
- "description":""
} - "references_merimee":,{
- "type":"string",
- "title":"References_Merimee",
- "description":""
} - "reference_maj":,{
- "type":"string",
- "title":"Reference_MAJ",
- "description":""
} - "references_palissy":,{
- "type":"string",
- "title":"References_Palissy",
- "description":""
} - "sujet_represente":,{
- "type":"string",
- "title":"Sujet_Represente",
- "description":""
} - "lien_inha":,{
- "type":"string",
- "title":"Lien_INHA",
- "description":""
} - "source_de_la_representation":,{
- "type":"string",
- "title":"Source_de_la_representation",
- "description":""
} - "statut_juridique":,{
- "type":"string",
- "title":"Statut_juridique",
- "description":""
} - "materiaux_techniques":,{
- "type":"string",
- "title":"Materiaux_techniques",
- "description":""
} - "titre":,{
- "type":"string",
- "title":"Titre",
- "description":""
} - "utilisation":,{
- "type":"string",
- "title":"Utilisation",
- "description":""
} - "lien_site_associe":,{
- "type":"string",
- "title":"Lien_site_associe",
- "description":""
} - "coordonnees":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"coordonnees",
- "description":""
}
} - "reference":
}
} - "fields":
} - "properties":
} - "base-joconde-extrait":
}
Soumettre une réutilisation
Cliquez pour déplier Cliquez pour replier
Connectez-vous pour proposer une réutilisation.