enregistrement

enregistrement

Filtres actifs Tout effacer

Aucun filtre actif

Filtres

Annuaire des associations - Orléans Métropole

Pièces jointes

Cliquez pour déplier Cliquez pour replier

Modèle de données

Cliquez pour déplier Cliquez pour replier
Nom de l'association
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
nom
Type
texte
Exemple
                       
Sigle de l'association
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
sigle
Type
texte
Exemple
                       
Activite principale
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
activite
Type
texte
Exemple
                       
Precision sur l'activite
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
activite_sous
Type
texte
Exemple
                       
Objectif de l'association
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
description
Type
texte
Exemple
                       
Description des activites
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
principales_activites
Type
texte
Exemple
                       
Public vise
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
public_vise
Type
texte
Exemple
                       
Lieux de pratique
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
lieux_pratique
Type
texte
Exemple
                       
Adresse du siege social
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
siege_social_adress
Type
texte
Exemple
                       
Courriel de contact
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
siege_social_email
Type
texte
Exemple
                       
Telephone du siege social
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
siege_social_tel
Type
texte
Exemple
                       
Site Internet
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
siege_social_www
Type
texte
Exemple
                       
Coordonnees géographiques
               

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
coordonnees
Type
geo_point_2d
Exemple
                       
Numéro RNA
Numéro d'identification nationale des associations (Répertoire National des Associations)

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
rna
Type
texte
Exemple
                       
Numéro Séquence Association
Numéro interne

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
num_sequence
Type
texte
Exemple
                       
Numéro Orléans Métropole
Identifiant de l'association dans le système d'information d'Orléans Métropole

Aucune description n'est disponible pour ce champ.

Nom (identifiant)
id_om
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":"annuaire-des-associations-orleans-metropole",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/annuaire-des-associations-orleans-metropole"
      }
    ]
    ,
  • "definitions":
    {
    • "annuaire-des-associations-orleans-metropole":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/annuaire-des-associations-orleans-metropole_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"
            }
          }
        }
        ,
      • "annuaire-des-associations-orleans-metropole_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "nom":
                {
                • "type":"string",
                • "title":"Nom de l'association",
                • "description":""
                }
                ,
              • "sigle":
                {
                • "type":"string",
                • "title":"Sigle de l'association",
                • "description":""
                }
                ,
              • "activite":
                {
                • "type":"string",
                • "title":"Activite principale",
                • "description":""
                }
                ,
              • "activite_sous":
                {
                • "type":"string",
                • "title":"Precision sur l'activite",
                • "description":""
                }
                ,
              • "description":
                {
                • "type":"string",
                • "title":"Objectif de l'association",
                • "description":""
                }
                ,
              • "principales_activites":
                {
                • "type":"string",
                • "title":"Description des activites",
                • "description":""
                }
                ,
              • "public_vise":
                {
                • "type":"string",
                • "title":"Public vise",
                • "description":""
                }
                ,
              • "lieux_pratique":
                {
                • "type":"string",
                • "title":"Lieux de pratique",
                • "description":""
                }
                ,
              • "siege_social_adress":
                {
                • "type":"string",
                • "title":"Adresse du siege social",
                • "description":""
                }
                ,
              • "siege_social_email":
                {
                • "type":"string",
                • "title":"Courriel de contact",
                • "description":""
                }
                ,
              • "siege_social_tel":
                {
                • "type":"string",
                • "title":"Telephone du siege social",
                • "description":""
                }
                ,
              • "siege_social_www":
                {
                • "type":"string",
                • "title":"Site Internet",
                • "description":""
                }
                ,
              • "coordonnees":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"Coordonnees géographiques",
                • "description":""
                }
                ,
              • "rna":
                {
                • "type":"string",
                • "title":"Numéro RNA",
                • "description":"Numéro d'identification nationale des associations (Répertoire National des Associations)"
                }
                ,
              • "num_sequence":
                {
                • "type":"string",
                • "title":"Numéro Séquence Association",
                • "description":"Numéro interne"
                }
                ,
              • "id_om":
                {
                • "type":"string",
                • "title":"Numéro Orléans Métropole",
                • "description":"Identifiant de l'association dans le système d'information d'Orléans Métropole"
                }
              }
            }
          }
        }
      }
    }