enregistrement
Le patrimoine francilien en images
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":"photos-patrimoine",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/photos-patrimoine"
}
] - "definitions":{
- "photos-patrimoine":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/photos-patrimoine_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"
}
}
} - "photos-patrimoine_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "immatriculation":,{
- "type":"string",
- "title":"Immatriculation",
- "description":""
} - "titre_courant_de_l_oeuvre":,{
- "type":"string",
- "title":"Titre courant de l'œuvre",
- "description":""
} - "nom_du_fichier":,{
- "type":"string",
- "title":"Nom du fichier",
- "description":""
} - "type_support":,{
- "type":"string",
- "title":"Type support",
- "description":""
} - "reference_dossier":,{
- "type":"string",
- "title":"Référence dossier",
- "description":""
} - "denomination":,{
- "type":"string",
- "title":"Dénomination",
- "description":""
} - "sujet":,{
- "type":"string",
- "title":"Sujet",
- "description":""
} - "illustration_significative":,{
- "type":"string",
- "title":"Illustration significative",
- "description":""
} - "cadre_d_etude_type":,{
- "type":"string",
- "title":"Cadre d'étude Type",
- "description":""
} - "cadre_d_etude_affixe":,{
- "type":"string",
- "title":"Cadre d'étude Affixe",
- "description":""
} - "edifice":,{
- "type":"string",
- "title":"Edifice",
- "description":""
} - "auteur_oeuvre":,{
- "type":"string",
- "title":"Auteur œuvre",
- "description":""
} - "datation":,{
- "type":"string",
- "title":"Datation",
- "description":""
} - "categorie":,{
- "type":"string",
- "title":"Catégorie",
- "description":""
} - "protection_mh":,{
- "type":"string",
- "title":"Protection MH",
- "description":""
} - "protection_mh_archi":,{
- "type":"string",
- "title":"Protection MH Archi",
- "description":""
} - "externallink":,{
- "type":"string",
- "title":"externalLink",
- "description":""
} - "ordre_table_ill":,{
- "type":"string",
- "title":"Ordre table ill.",
- "description":""
} - "legende":,{
- "type":"string",
- "title":"Légende",
- "description":""
} - "mot_cle":,{
- "type":"string",
- "title":"Mot-clé",
- "description":""
} - "auteur_photo":,{
- "type":"string",
- "title":"Auteur photo",
- "description":""
} - "copyright":,{
- "type":"string",
- "title":"Copyright",
- "description":""
} - "droits_de_diffusion":,{
- "type":"string",
- "title":"Droits de diffusion",
- "description":""
} - "aire_d_etude":,{
- "type":"string",
- "title":"Aire d'étude",
- "description":""
} - "departement":,{
- "type":"string",
- "title":"Département",
- "description":""
} - "commune":,{
- "type":"string",
- "title":"Commune",
- "description":""
} - "lieu_dit":,{
- "type":"string",
- "title":"Lieu-dit",
- "description":""
} - "adresse":,{
- "type":"string",
- "title":"Adresse",
- "description":""
} - "auteur_doc_reproduit":,{
- "type":"string",
- "title":"Auteur doc. reproduit",
- "description":""
} - "ref_bibliographique":,{
- "type":"string",
- "title":"Réf. Bibliographique",
- "description":""
} - "lieu_de_conservation":,{
- "type":"string",
- "title":"Lieu de conservation",
- "description":""
} - "cote_du_document":,{
- "type":"string",
- "title":"Cote du document",
- "description":""
} - "doc_reproduit":,{
- "type":"string",
- "title":"Doc. reproduit",
- "description":""
} - "legende_du_doc":,{
- "type":"string",
- "title":"Légende du doc.",
- "description":""
} - "date_de_synchronisation_flds_gertrude_date_fr":,{
- "type":"string",
- "title":"Date de synchronisation",
- "description":""
} - "date_de_synchronisation_ftp":,{
- "type":"string",
- "title":"Date de synchronisation FTP",
- "description":""
} - "autorisations_et_cessions_de_droits":,{
- "type":"string",
- "title":"Autorisations et cessions de droits",
- "description":""
} - "publication":,{
- "type":"string",
- "title":"Publication",
- "description":""
} - "emetteur":,{
- "type":"string",
- "title":"Emetteur",
- "description":""
} - "annee_de_la_photo":,{
- "type":"string",
- "title":"Année de la photo",
- "description":""
} - "numero_sequentiel":,{
- "type":"string",
- "title":"Numéro séquentiel",
- "description":""
} - "format_gertrude":,{
- "type":"string",
- "title":"Format Gertrude",
- "description":""
} - "typologiesupport":,{
- "type":"string",
- "title":"Typologie Support",
- "description":""
} - "type_de_fichier":,{
- "type":"string",
- "title":"Type de fichier",
- "description":""
} - "format_photo":,{
- "type":"string",
- "title":"Format photo",
- "description":""
} - "orientation_photo":,{
- "type":"string",
- "title":"Orientation photo",
- "description":""
} - "couleur":,{
- "type":"string",
- "title":"Couleur",
- "description":""
} - "date_de_prise_de_vue_gertrude_flds_b41_fr":,{
- "type":"string",
- "title":"Date de prise de vue Gertrude",
- "description":""
} - "date_de_prise_de_vue_flds_dateprisedevue_fr":,{
- "type":"string",
- "title":"Date de prise de vue",
- "description":""
} - "titre_iconographique":,{
- "type":"string",
- "title":"Titre iconographique",
- "description":""
} - "date_upload":,{
- "type":"string",
- "title":"Date Upload",
- "description":""
} - "ko":,{
- "type":"string",
- "title":"Ko",
- "description":""
} - "w":,{
- "type":"string",
- "title":"W",
- "description":""
} - "h":,{
- "type":"string",
- "title":"H",
- "description":""
} - "url_photo_small":,{
- "type":"string",
- "title":"url_photo_small",
- "description":""
} - "url_photo_medium":,{
- "type":"string",
- "title":"url_photo_medium",
- "description":""
} - "fichier_medium":,{
- "type":"string",
- "title":"fichier_medium",
- "description":""
} - "id":,{
- "type":"string",
- "title":"Identifiant",
- "description":""
} - "gps_flds_gps_fr":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"GPS [ Flds.GPS | FR ]",
- "description":""
}
} - "immatriculation":
}
} - "fields":
} - "properties":
} - "photos-patrimoine":
}
Soumettre une réutilisation
Cliquez pour déplier Cliquez pour replier
Connectez-vous pour proposer une réutilisation.
Jeux de données similaires
- Vous cherchez des photos d’un lycée, d’un tramway ou d’un château pour illustrer un site web ou un exposé ? La médiathèque du portail iledefrance.fr s’enrichit régulièrement de nouvelles images sur les grandes thématiques portées par la Région.
- Le jeu de données présente l'ensemble des publications du service "Patrimoine" de la Région Île-de-France.
- Bénéficiaires du label Patrimoine d'intérêt régional, désignés lors de commissions permanentes, la première ayant eu lieu le 4 juillet 2018. Ce label permet de développer l’attractivité touristique de la région et de révéler un patrimoine méconnu, en mettant en place des parcours axés sur des thématiques fondatrices de l’histoire régionale.
- Ce jeu de données présente 100 sites emblématiques du patrimoine sportif en Île-de-France. Il a été commandé par la Région à la Manufacture du patrimoine qui y a travaillé de l'automne 2023 à mai 2024.