demarches-normaliennes/app/schemas/association.json

248 lines
4.3 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://demarches-simplifiees.fr/association.schema.json",
"title": "Association",
"type": "object",
"properties": {
"association_titre": {
"type": "string"
},
"association_objet": {
"type": "string"
},
"association_rna": {
"type": "string"
},
"association_date_creation": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
]
},
"association_date_declaration": {
"type": "string",
"format": "date"
},
"association_date_publication": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
]
},
"association_date_dissolution": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
]
},
"association_mise_a_jour": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
]
},
"association_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_siret": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_siret_siege_social": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_code_civilite_dirigeant": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_civilite_dirigeant": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_code_etat": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_etat": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_code_groupement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_groupement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"association_address_siege": {
"type": "object",
"properties": {
"complement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"numero_voie": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"type_voie": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"libelle_voie": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"distribution": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"code_insee": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"code_postal": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"commune": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
}
}
},
"required": [
"association_titre",
"association_rna",
"association_date_declaration"
]
}