enregistrement

enregistrement

Filtres actifs Tout effacer

Aucun filtre actif

Filtres

Parcs animaliers en Île-de-France

Pièces jointes

Cliquez pour déplier Cliquez pour replier

Modèle de données

Cliquez pour déplier Cliquez pour replier
id
Identifiant interne

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
id
Type
texte
Exemple
                       
Type
Type de parc animalier

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
type
Type
texte
Exemple
                       
nom
Nom de l'établissement

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
nom
Type
texte
Exemple
                       
description
Description des services proposés

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
description
Type
texte
Exemple
                       
adresse
Adresse de l'établissement

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
adresse
Type
texte
Exemple
                       
cp
Code postal de l'établissement

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
cp
Type
décimal
Exemple
                       
commune
Commune de l'établissement

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
commune
Type
texte
Exemple
                       
web
Site web de l'établissement

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
web
Type
texte
Exemple
                       
GPS
Coordonnées GPS de l'établissement

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
gps
Type
geo_point_2d
Exemple
                       
email
Adresse email de contact

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
email
Type
texte
Exemple
                       
tel
Téléphone de l'établissement

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
tel
Type
texte
Exemple
                       
lundi
Horaires d'ouverture le lundi

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
lundi
Type
texte
Exemple
                       
mardi
Horaires d'ouverture le mardi

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
mardi
Type
texte
Exemple
                       
mercredi
Horaires d'ouverture le mercredi

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
mercredi
Type
texte
Exemple
                       
jeudi
Horaires d'ouverture le jeudi

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
jeudi
Type
texte
Exemple
                       
vendredi
Horaires d'ouverture le vendredi

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
vendredi
Type
texte
Exemple
                       
samedi
Horaires d'ouverture le samedi

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
samedi
Type
texte
Exemple
                       
dimanche
Horaires d'ouverture le dimanche

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
dimanche
Type
texte
Exemple
                       
Gratuit/payant
Entrée gratuite ou payante

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
gratuit_payant
Type
texte
Exemple
                       
Ouvert/fermé
Établissement ouvert ou fermé en juillet/août 2020

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
ouvert_ferme
Type
texte
Exemple
                       
covid
Informations complémentaires

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
covid
Type
texte
Exemple
                       

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":"parcs-animaliers",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/parcs-animaliers"
      }
    ]
    ,
  • "definitions":
    {
    • "parcs-animaliers":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/parcs-animaliers_records"
            }
          }
        }
      }
      ,
    • "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"
          }
        }
        ,
      • "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"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "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"
            }
          }
        }
        ,
      • "parcs-animaliers_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "id":
                {
                • "type":"string",
                • "title":"id",
                • "description":"Identifiant interne"
                }
                ,
              • "type":
                {
                • "type":"string",
                • "title":"Type",
                • "description":"Type de parc animalier"
                }
                ,
              • "nom":
                {
                • "type":"string",
                • "title":"nom",
                • "description":"Nom de l'établissement"
                }
                ,
              • "description":
                {
                • "type":"string",
                • "title":"description",
                • "description":"Description des services proposés"
                }
                ,
              • "adresse":
                {
                • "type":"string",
                • "title":"adresse",
                • "description":"Adresse de l'établissement"
                }
                ,
              • "cp":
                {
                • "type":"number",
                • "title":"cp",
                • "description":"Code postal de l'établissement"
                }
                ,
              • "commune":
                {
                • "type":"string",
                • "title":"commune",
                • "description":"Commune de l'établissement"
                }
                ,
              • "web":
                {
                • "type":"string",
                • "title":"web",
                • "description":"Site web de l'établissement"
                }
                ,
              • "gps":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"GPS",
                • "description":"Coordonnées GPS de l'établissement"
                }
                ,
              • "email":
                {
                • "type":"string",
                • "title":"email",
                • "description":"Adresse email de contact"
                }
                ,
              • "tel":
                {
                • "type":"string",
                • "title":"tel",
                • "description":"Téléphone de l'établissement"
                }
                ,
              • "lundi":
                {
                • "type":"string",
                • "title":"lundi",
                • "description":"Horaires d'ouverture le lundi"
                }
                ,
              • "mardi":
                {
                • "type":"string",
                • "title":"mardi",
                • "description":"Horaires d'ouverture le mardi"
                }
                ,
              • "mercredi":
                {
                • "type":"string",
                • "title":"mercredi",
                • "description":"Horaires d'ouverture le mercredi"
                }
                ,
              • "jeudi":
                {
                • "type":"string",
                • "title":"jeudi",
                • "description":"Horaires d'ouverture le jeudi"
                }
                ,
              • "vendredi":
                {
                • "type":"string",
                • "title":"vendredi",
                • "description":"Horaires d'ouverture le vendredi"
                }
                ,
              • "samedi":
                {
                • "type":"string",
                • "title":"samedi",
                • "description":"Horaires d'ouverture le samedi"
                }
                ,
              • "dimanche":
                {
                • "type":"string",
                • "title":"dimanche",
                • "description":"Horaires d'ouverture le dimanche"
                }
                ,
              • "gratuit_payant":
                {
                • "type":"string",
                • "title":"Gratuit/payant",
                • "description":"Entrée gratuite ou payante"
                }
                ,
              • "ouvert_ferme":
                {
                • "type":"string",
                • "title":"Ouvert/fermé",
                • "description":"Établissement ouvert ou fermé en juillet/août 2020"
                }
                ,
              • "covid":
                {
                • "type":"string",
                • "title":"covid",
                • "description":"Informations complémentaires"
                }
              }
            }
          }
        }
      }
    }

    Jeux de données similaires