@tricoteuses/assemblee 1.9.2 → 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/schemas/acteur/Acteur.json +56 -0
- package/lib/schemas/acteur/AdresseElectronique.json +52 -0
- package/lib/schemas/acteur/AdressePostale.json +75 -0
- package/lib/schemas/acteur/Civ.json +14 -0
- package/lib/schemas/acteur/Collaborateur.json +29 -0
- package/lib/schemas/acteur/EtatCivil.json +51 -0
- package/lib/schemas/acteur/Ident.json +40 -0
- package/lib/schemas/acteur/Lieu.json +66 -0
- package/lib/schemas/acteur/Mandat.json +192 -0
- package/lib/schemas/acteur/Profession.json +46 -0
- package/lib/schemas/agenda/Agenda.json +318 -0
- package/lib/schemas/agenda/CycleDeVie.json +45 -0
- package/lib/schemas/agenda/PointOdj.json +82 -0
- package/lib/schemas/amendement/Amendement.json +246 -0
- package/lib/schemas/amendement/Diff.json +25 -0
- package/lib/schemas/amendement/DispositifAmdtCredit.json +85 -0
- package/lib/schemas/amendement/Identifiant.json +62 -0
- package/lib/schemas/amendement/PointeurFragmentTexte.json +127 -0
- package/lib/schemas/amendement/Representation.json +67 -0
- package/lib/schemas/amendement/Total.json +26 -0
- package/lib/schemas/converted_from_type/acteurs_et_organes.json +666 -0
- package/lib/schemas/converted_from_type/agendas.json +1100 -0
- package/lib/schemas/converted_from_type/amendements.json +3191 -0
- package/lib/schemas/converted_from_type/debats.json +682 -0
- package/lib/schemas/converted_from_type/deputes.json +26 -0
- package/lib/schemas/converted_from_type/dossiers_legislatifs.json +2918 -0
- package/lib/schemas/converted_from_type/legislatures.json +16 -0
- package/lib/schemas/converted_from_type/questions.json +328 -0
- package/lib/schemas/converted_from_type/scrutins.json +393 -0
- package/lib/schemas/debat/Contenu.json +75 -0
- package/lib/schemas/debat/Debat.json +40 -0
- package/lib/schemas/debat/Metadonnees.json +75 -0
- package/lib/schemas/debat/Orateur.json +60 -0
- package/lib/schemas/debat/Point.json +169 -0
- package/lib/schemas/debat/Sommaire.json +71 -0
- package/lib/schemas/debat/SommaireElement.json +108 -0
- package/lib/schemas/debat/Texte.json +34 -0
- package/lib/schemas/document/CodeLibelle.json +25 -0
- package/lib/schemas/document/Document.json +385 -0
- package/lib/schemas/document/Indexation.json +38 -0
- package/lib/schemas/dossier/ActeLegislatif.json +211 -0
- package/lib/schemas/dossier/ActeLegislatifBase.json +62 -0
- package/lib/schemas/dossier/Agenda.json +23 -0
- package/lib/schemas/dossier/ConseilConstitutionnel.json +35 -0
- package/lib/schemas/dossier/Decision.json +25 -0
- package/lib/schemas/dossier/Dossier.json +124 -0
- package/lib/schemas/dossier/EtudeImpact.json +29 -0
- package/lib/schemas/dossier/EtudePlf.json +105 -0
- package/lib/schemas/dossier/Europe.json +42 -0
- package/lib/schemas/dossier/FamCodeLibelle.json +25 -0
- package/lib/schemas/dossier/InfoJO.json +23 -0
- package/lib/schemas/dossier/Initiateur.json +36 -0
- package/lib/schemas/dossier/Motion.json +27 -0
- package/lib/schemas/dossier/Promulgation.json +62 -0
- package/lib/schemas/dossier/Rapporteur.json +36 -0
- package/lib/schemas/dossier/Texte.json +47 -0
- package/lib/schemas/organe/CodeTypeOrgane.json +43 -0
- package/lib/schemas/organe/Organe.json +136 -0
- package/lib/schemas/organe/ViMoDe.json +28 -0
- package/lib/schemas/question/Auteur.json +58 -0
- package/lib/schemas/question/Cloture.json +28 -0
- package/lib/schemas/question/InfoJO.json +40 -0
- package/lib/schemas/question/MinAttribElement.json +30 -0
- package/lib/schemas/question/Question.json +172 -0
- package/lib/schemas/question/Renouvellement.json +17 -0
- package/lib/schemas/question/Signalement.json +21 -0
- package/lib/schemas/question/Texte.json +24 -0
- package/lib/schemas/scrutin/DecompteVoix.json +35 -0
- package/lib/schemas/scrutin/Dysfonctionnement.json +50 -0
- package/lib/schemas/scrutin/MiseAuPoint.json +53 -0
- package/lib/schemas/scrutin/OrganeVotant.json +88 -0
- package/lib/schemas/scrutin/Scrutin.json +187 -0
- package/lib/schemas/scrutin/Votant.json +37 -0
- package/lib/schemas/texte_loi/Alinea.json +36 -0
- package/lib/schemas/texte_loi/ExposeMotifs.json +24 -0
- package/lib/schemas/texte_loi/MetaDonnees.json +126 -0
- package/lib/schemas/texte_loi/ProjetLoi.json +64 -0
- package/lib/schemas/texte_loi/Sommaire.json +48 -0
- package/lib/schemas/texte_loi/TexteLoi.json +225 -0
- package/lib/schemas/texte_loi/TexteLoiPartiel.json +237 -0
- package/package.json +3 -2
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Acteur.",
|
|
3
|
+
"description": "Personne physique ayant été élue ou nommée dans `un organe <organe.html>`__.",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"uid": {
|
|
9
|
+
"description": "Identifiant unique.",
|
|
10
|
+
"type": "string"
|
|
11
|
+
},
|
|
12
|
+
"etatCivil": {
|
|
13
|
+
"$ref": "EtatCivil.json"
|
|
14
|
+
},
|
|
15
|
+
"profession": {
|
|
16
|
+
"$ref": "Profession.json"
|
|
17
|
+
},
|
|
18
|
+
"uriHatvp": {
|
|
19
|
+
"description": "URL de la déclaration d'intérêt de l'acteur sur le site de la Haute Autorité pour la Transparence dans la Vie Publique.",
|
|
20
|
+
"type": "string",
|
|
21
|
+
"format": "uri"
|
|
22
|
+
},
|
|
23
|
+
"adresses": {
|
|
24
|
+
"description": "Les adresses postales, numéros de téléphones et les adresses électroniques de l'acteur.",
|
|
25
|
+
"type": "array",
|
|
26
|
+
"items": {
|
|
27
|
+
"anyOf": [
|
|
28
|
+
{
|
|
29
|
+
"$ref": "AdresseElectronique.json"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"$ref": "AdressePostale.json"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"mandats": {
|
|
38
|
+
"description": "Les mandats (`représentatifs <https://fr.wikipedia.org/wiki/Mandat_repr%C3%A9sentatif>`__ ou `impératifs <https://fr.wikipedia.org/wiki/Mandat_imp%C3%A9ratif>`__) passés ou présents.",
|
|
39
|
+
"type": "array",
|
|
40
|
+
"items": {
|
|
41
|
+
"$ref": "Mandat.json"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"schemaVersion": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"required": [
|
|
49
|
+
"uid",
|
|
50
|
+
"etatCivil"
|
|
51
|
+
],
|
|
52
|
+
|
|
53
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
54
|
+
"$id": "Acteur.json",
|
|
55
|
+
"$$target": "Acteur.json"
|
|
56
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Téléphone ou adresse électronique",
|
|
3
|
+
"description": "Tous les moyens de contacter l'acteur ou d'obtenir des informations le concernant, autre qu'une adresse postale.",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"uid": {
|
|
9
|
+
"description": "Identifiant unique.",
|
|
10
|
+
"type": "string"
|
|
11
|
+
},
|
|
12
|
+
"type": {
|
|
13
|
+
"description": "Détermine l'interprétation des champs **adresseDeRattachement** et **valElec**. Voir aussi le champ **typeLibelle**. Nombre entier.",
|
|
14
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-du-champ-type-de-laddresse-dun-acteur/",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"typeLibelle": {
|
|
18
|
+
"description": "Signification du champ type.",
|
|
19
|
+
"type": "string"
|
|
20
|
+
},
|
|
21
|
+
"poids": {
|
|
22
|
+
"description": "Détermine un ordre entre les valeurs d'un même type (Téléphone, courriel etc.) pour un acteur donné. Les valeurs dont le poids est le plus petit sont les premières. Nombre entier.",
|
|
23
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-du-champ-poids-dans-ladresse-dun-acteur/",
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"adresseDeRattachement": {
|
|
27
|
+
"description": "Identifiant unique de `l'addresse postale <#adresse-postale>`__ associée. Uniquement renseigné pour les types Téléphone et Télécopie.",
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"valElec": {
|
|
31
|
+
"description": "Numéro de téléphone ou adresse électronique (courriel, site web, identifiant, etc.)",
|
|
32
|
+
"type": "string"
|
|
33
|
+
},
|
|
34
|
+
"xsiType": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"enum": [
|
|
37
|
+
"AdresseMail_Type",
|
|
38
|
+
"AdresseSiteWeb_Type",
|
|
39
|
+
"AdresseTelephonique_Type"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"required": [
|
|
44
|
+
"uid",
|
|
45
|
+
"type",
|
|
46
|
+
"typeLibelle"
|
|
47
|
+
],
|
|
48
|
+
|
|
49
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
50
|
+
"$id": "AdresseElectronique.json",
|
|
51
|
+
"$$target": "AdresseElectronique.json"
|
|
52
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Adresse postale",
|
|
3
|
+
"description": "",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"uid": {
|
|
9
|
+
"description": "Identifiant unique.",
|
|
10
|
+
"type": "string"
|
|
11
|
+
},
|
|
12
|
+
"type": {
|
|
13
|
+
"description": "Type de l'adresse. Nombre entier.",
|
|
14
|
+
"type": "string",
|
|
15
|
+
"enum": [
|
|
16
|
+
"0",
|
|
17
|
+
"1",
|
|
18
|
+
"2"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"typeLibelle": {
|
|
22
|
+
"description": "Signification du champ type.",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"enum": [
|
|
25
|
+
"Adresse officielle",
|
|
26
|
+
"Adresse publiée pour Paris ou sa région",
|
|
27
|
+
"Adresse publiée de circonscription"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"poids": {
|
|
31
|
+
"description": "Détermine un ordre entre les valeurs d'un même type (Adresse officielle, Adresse de circonscription) pour un acteur donné. Les valeurs dont le poids est le plus petit sont les premières. Nombre entier.",
|
|
32
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-du-champ-poids-dans-ladresse-dun-acteur/",
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"intitule": {
|
|
36
|
+
"description": "Intitulé (par exemple Assemblée nationale).",
|
|
37
|
+
"type": "string"
|
|
38
|
+
},
|
|
39
|
+
"numeroRue": {
|
|
40
|
+
"description": "Numéro de rue.",
|
|
41
|
+
"type": "string"
|
|
42
|
+
},
|
|
43
|
+
"nomRue": {
|
|
44
|
+
"description": "Nom de rue.",
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"complementAdresse": {
|
|
48
|
+
"description": "Complément d'adresse.",
|
|
49
|
+
"type": "string"
|
|
50
|
+
},
|
|
51
|
+
"codePostal": {
|
|
52
|
+
"description": "Code Postal.",
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
"ville": {
|
|
56
|
+
"description": "Ville.",
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
"xsiType": {
|
|
60
|
+
"type": "string",
|
|
61
|
+
"enum": [
|
|
62
|
+
"AdressePostale_Type"
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"required": [
|
|
67
|
+
"uid",
|
|
68
|
+
"type",
|
|
69
|
+
"typeLibelle"
|
|
70
|
+
],
|
|
71
|
+
|
|
72
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
73
|
+
"$id": "AdressePostale.json",
|
|
74
|
+
"$$target": "AdressePostale.json"
|
|
75
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Collaborateur",
|
|
3
|
+
"description": "",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"qualite": {
|
|
9
|
+
"$ref": "Civ.json"
|
|
10
|
+
},
|
|
11
|
+
"nom": {
|
|
12
|
+
"description": "Nom.",
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"prenom": {
|
|
16
|
+
"description": "Prénom.",
|
|
17
|
+
"type": "string"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": [
|
|
21
|
+
"qualite",
|
|
22
|
+
"prenom",
|
|
23
|
+
"nom"
|
|
24
|
+
],
|
|
25
|
+
|
|
26
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
27
|
+
"$id": "Collaborateur.json",
|
|
28
|
+
"$$target": "Collaborateur.json"
|
|
29
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "État civil",
|
|
3
|
+
"description": "L'état civil est la situation de la personne dans la société, résultat d'une procédure écrite d'identification administrative.",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ident": {
|
|
9
|
+
"$ref": "Ident.json"
|
|
10
|
+
},
|
|
11
|
+
"infoNaissance": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"additionalProperties": false,
|
|
14
|
+
"properties": {
|
|
15
|
+
"dateNais": {
|
|
16
|
+
"description": "Date de naissance.",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": "date-time"
|
|
19
|
+
},
|
|
20
|
+
"villeNais": {
|
|
21
|
+
"description": "Ville de naissance.",
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"depNais": {
|
|
25
|
+
"description": "Département de naissance.",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
"paysNais": {
|
|
29
|
+
"description": "Pays de naissance.",
|
|
30
|
+
"type": "string"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"required": [
|
|
34
|
+
"dateNais"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"dateDeces": {
|
|
38
|
+
"description": "Date du décès",
|
|
39
|
+
"type": "string",
|
|
40
|
+
"format": "date-time"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"required": [
|
|
44
|
+
"ident",
|
|
45
|
+
"infoNaissance"
|
|
46
|
+
],
|
|
47
|
+
|
|
48
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
49
|
+
"$id": "EtatCivil.json",
|
|
50
|
+
"$$target": "EtatCivil.json"
|
|
51
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Identité",
|
|
3
|
+
"description": "",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"civ": {
|
|
9
|
+
"$ref": "Civ.json"
|
|
10
|
+
},
|
|
11
|
+
"prenom": {
|
|
12
|
+
"description": "Prénom.",
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"nom": {
|
|
16
|
+
"description": "Nom.",
|
|
17
|
+
"type": "string"
|
|
18
|
+
},
|
|
19
|
+
"alpha": {
|
|
20
|
+
"description": "La signification de ce champ est indéfinie.",
|
|
21
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-des-champs-alpha-d-un-acteur/74",
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"trigramme": {
|
|
25
|
+
"description": "La signification de ce champ est indéfinie.",
|
|
26
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-des-champs-trigramme-d-un-acteur/75",
|
|
27
|
+
"type": "string"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"required": [
|
|
31
|
+
"civ",
|
|
32
|
+
"prenom",
|
|
33
|
+
"nom",
|
|
34
|
+
"alpha"
|
|
35
|
+
],
|
|
36
|
+
|
|
37
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
38
|
+
"$id": "Ident.json",
|
|
39
|
+
"$$target": "Ident.json"
|
|
40
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Lieu",
|
|
3
|
+
"description": "",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"region": {
|
|
9
|
+
"description": "Région de la cirsconscription du député. Uniquement si le type de territoire est Métropolitain ou Dom.",
|
|
10
|
+
"type": "string",
|
|
11
|
+
"enum": [
|
|
12
|
+
"Nouvelle-Aquitaine",
|
|
13
|
+
"Auvergne-Rhône-Alpes",
|
|
14
|
+
"Provence-Alpes-Côte d'Azur",
|
|
15
|
+
"Normandie",
|
|
16
|
+
"Ile-de-France",
|
|
17
|
+
"Centre-Val de Loire",
|
|
18
|
+
"Bretagne",
|
|
19
|
+
"Grand Est",
|
|
20
|
+
"Hauts-de-France",
|
|
21
|
+
"Occitanie",
|
|
22
|
+
"Pays de la Loire",
|
|
23
|
+
"Bourgogne-Franche-Comté",
|
|
24
|
+
"Mayotte",
|
|
25
|
+
"Martinique",
|
|
26
|
+
"Réunion",
|
|
27
|
+
"Guyane",
|
|
28
|
+
"Nouvelle-Calédonie",
|
|
29
|
+
"Corse",
|
|
30
|
+
"Guadeloupe",
|
|
31
|
+
"Français établis hors de France",
|
|
32
|
+
"Polynésie française",
|
|
33
|
+
"Saint-Pierre-et-Miquelon",
|
|
34
|
+
"Saint-Barthélemy et Saint-Martin",
|
|
35
|
+
"Wallis-et-Futuna"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"regionType": {
|
|
39
|
+
"description": "Type de territoire de la circonscription du député (`Métropolitain <https://fr.wikipedia.org/wiki/R%C3%A9gion_fran%C3%A7aise>`__, `Dom <https://fr.wikipedia.org/wiki/D%C3%A9partement_et_r%C3%A9gion_d%27outre-mer>`__, `Collectivités d'outre-mer et Nouvelle-Calédonie <https://fr.wikipedia.org/wiki/Collectivit%C3%A9_d%27outre-mer>`__ ou `Français établis hors de France <https://fr.wikipedia.org/wiki/Fran%C3%A7ais_%C3%A9tablis_hors_de_France>`__)",
|
|
40
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-du-champ-regiontype-dun-acteur/",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"enum": [
|
|
43
|
+
"Métropolitain",
|
|
44
|
+
"Dom",
|
|
45
|
+
"Collectivités d'outre-mer et Nouvelle-Calédonie",
|
|
46
|
+
"Français établis hors de France"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"departement": {
|
|
50
|
+
"description": "Si le type de territoire est Métropolitain ou Dom: `nom du département <https://fr.wikipedia.org/wiki/D%C3%A9partement_fran%C3%A7ais#D%C3%A9nomination_des_d%C3%A9partements>`__ de la cirsconscription du député. Si le type de territoire est \"Collectivités d'outre-mer et Nouvelle-Calédonie\": nom de la collectivité. ",
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
53
|
+
"numDepartement": {
|
|
54
|
+
"description": "`Numéro du département <https://fr.wikipedia.org/wiki/D%C3%A9partement_fran%C3%A7ais#Codification>`__ de la cirsconscription du député. Uniquement si le type de territoire n'est pas \"Français établis hors de France\".",
|
|
55
|
+
"type": "string"
|
|
56
|
+
},
|
|
57
|
+
"numCirco": {
|
|
58
|
+
"description": "Numéro de la `circonscription du député <https://fr.wikipedia.org/wiki/Circonscriptions_l%C3%A9gislatives_fran%C3%A7aises>`__.",
|
|
59
|
+
"type": "string"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
64
|
+
"$id": "Lieu.json",
|
|
65
|
+
"$$target": "Lieu.json"
|
|
66
|
+
}
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Mandat",
|
|
3
|
+
"description": "Une personne physique peut être mandataire d'un mandat représentatif ou bien d'un mandat dit simple, comme par exemple être membre d'une commission. Un `mandat représentatif <https://fr.wikipedia.org/wiki/Mandat_repr%C3%A9sentatif>`__ est \"une forme de mandat politique qui possède la caractéristique d'être général, libre et non révocable\".",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"xsiType": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"enum": [
|
|
11
|
+
"MandatAvecSuppleant_Type",
|
|
12
|
+
"MandatMission_Type",
|
|
13
|
+
"MandatParlementaire_type",
|
|
14
|
+
"MandatSimple_Type"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"uid": {
|
|
18
|
+
"description": "Identifiant unique.",
|
|
19
|
+
"type": "string"
|
|
20
|
+
},
|
|
21
|
+
"acteurRef": {
|
|
22
|
+
"description": "Identifiant unique (uid) de l'`acteur <acteur.html>`__ mandataire.",
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
"legislature": {
|
|
26
|
+
"description": "Numéro de `la législature <https://fr.wikipedia.org/wiki/Liste_des_l%C3%A9gislatures_fran%C3%A7aises>`__ sous laquelle a été créé l'organe. Nombre entier.",
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"typeOrgane": {
|
|
30
|
+
"$ref": "CodeTypeOrgane.json"
|
|
31
|
+
},
|
|
32
|
+
"dateDebut": {
|
|
33
|
+
"description": "Date de début de la nomination de l’acteur.",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"format": "date-time"
|
|
36
|
+
},
|
|
37
|
+
"datePublication": {
|
|
38
|
+
"description": "Date de publication de la nomination au journal officiel.",
|
|
39
|
+
"type": "string",
|
|
40
|
+
"format": "date-time"
|
|
41
|
+
},
|
|
42
|
+
"dateFin": {
|
|
43
|
+
"description": "Date de fin du mandat.",
|
|
44
|
+
"type": "string",
|
|
45
|
+
"format": "date-time"
|
|
46
|
+
},
|
|
47
|
+
"preseance": {
|
|
48
|
+
"description": "Plus le mandat est important, plus la préséance est proche de 1. Nombre entier.",
|
|
49
|
+
"type": "string"
|
|
50
|
+
},
|
|
51
|
+
"nominPrincipale": {
|
|
52
|
+
"description": "1 pour le mandat principal, 0 sinon. Si deux mandats pour un même organe coïncident dans le temps (c’est à dire que les intervalles de temps entre leurs dates de début et de fin ont une intersection), alors le mandat principal est celui dont le champ préséance a la plus petite valeur.",
|
|
53
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-du-champ-nominprincipale-dans-un-mandat/",
|
|
54
|
+
"type": "string"
|
|
55
|
+
},
|
|
56
|
+
"infosQualite": {
|
|
57
|
+
"type": "object",
|
|
58
|
+
"additionalProperties": false,
|
|
59
|
+
"properties": {
|
|
60
|
+
"codeQualite": {
|
|
61
|
+
"description": "Abrégé de la qualité, unifié entre les `types d’organes <organe.html#codetypeorgane.json>`__.",
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
"libQualite": {
|
|
65
|
+
"description": "La signification de ce champ est indéfinie.",
|
|
66
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-du-champ-libqualite-dans-un-mandat/",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
"libQualiteSex": {
|
|
70
|
+
"description": "Titre donné en raison du mandat. (par exemple: Sénateur, Vice-Président, Membre, etc.)",
|
|
71
|
+
"type": "string"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"required": [
|
|
75
|
+
"libQualite"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"organesRefs": {
|
|
79
|
+
"description": "Identifiants uniques (uid) des `organes <organe.html>`__ au sein desquels le mandat est exercé.",
|
|
80
|
+
"type": "array",
|
|
81
|
+
"items": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"suppleant": {
|
|
86
|
+
"description": "Personne physique désignée pour remplacer le mandataire si nécessaire.",
|
|
87
|
+
"type": "object",
|
|
88
|
+
"additionalProperties": false,
|
|
89
|
+
"properties": {
|
|
90
|
+
"dateDebut": {
|
|
91
|
+
"description": "Date de début de la nomination.",
|
|
92
|
+
"type": "string",
|
|
93
|
+
"format": "date-time"
|
|
94
|
+
},
|
|
95
|
+
"dateFin": {
|
|
96
|
+
"description": "Date de fin de la fonction.",
|
|
97
|
+
"type": "string",
|
|
98
|
+
"format": "date-time"
|
|
99
|
+
},
|
|
100
|
+
"suppleantRef": {
|
|
101
|
+
"description": "Identifiant unique (uid) de l'`acteur <acteur.html>`__.",
|
|
102
|
+
"type": "string"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"required": [
|
|
106
|
+
"dateDebut",
|
|
107
|
+
"suppleantRef"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"election": {
|
|
111
|
+
"type": "object",
|
|
112
|
+
"additionalProperties": false,
|
|
113
|
+
"properties": {
|
|
114
|
+
"lieu": {
|
|
115
|
+
"$ref": "Lieu.json"
|
|
116
|
+
},
|
|
117
|
+
"causeMandat": {
|
|
118
|
+
"description": "Élection ou nommination à l'origine du mandat (par exemple: élections générales, remplacement d'un député nommé au Gouvernement, etc.)",
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
"refCirconscription": {
|
|
122
|
+
"description": "La signification de ce champ est indéfinie.",
|
|
123
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-du-champ-refcirconscription-d-un-mandat/",
|
|
124
|
+
"type": "string"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"required": [
|
|
128
|
+
"lieu"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
"mandature": {
|
|
132
|
+
"description": "Détails concernant uniquement les `mandats représentatifs <https://fr.wikipedia.org/wiki/Mandature>`__.",
|
|
133
|
+
"type": "object",
|
|
134
|
+
"additionalProperties": false,
|
|
135
|
+
"properties": {
|
|
136
|
+
"datePriseFonction": {
|
|
137
|
+
"description": "Date de la prise de fonction.",
|
|
138
|
+
"type": "string",
|
|
139
|
+
"format": "date-time"
|
|
140
|
+
},
|
|
141
|
+
"causeFin": {
|
|
142
|
+
"description": "Cause de la fin du mandat (par exemple: Fin de législature, Élection au Sénat, etc.)",
|
|
143
|
+
"type": "string"
|
|
144
|
+
},
|
|
145
|
+
"premiereElection": {
|
|
146
|
+
"description": "1 s'il s'agit d'une première élection, 0 sinon",
|
|
147
|
+
"type": "string"
|
|
148
|
+
},
|
|
149
|
+
"placeHemicycle": {
|
|
150
|
+
"description": "Numéro de la place du député dans `l’hémicycle <https://fr.wikipedia.org/wiki/H%C3%A9micycle>`__",
|
|
151
|
+
"type": "string"
|
|
152
|
+
},
|
|
153
|
+
"mandatRemplaceRef": {
|
|
154
|
+
"description": "Identifiant unique (uid) du mandat remplacé par ce mandat dans le cas d'une suppléance.",
|
|
155
|
+
"type": "string"
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"collaborateurs": {
|
|
160
|
+
"description": "Liste des collaborateurs attachés au `mandat représentatif <https://fr.wikipedia.org/wiki/Mandat_repr%C3%A9sentatif>`__ ",
|
|
161
|
+
"type": "array",
|
|
162
|
+
"items": {
|
|
163
|
+
"$ref": "Collaborateur.json"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"libelle": {
|
|
167
|
+
"description": "Libellé de la nomination. Uniquement pour les `députés en mission auprès du gouvernement <http://www2.assemblee-nationale.fr/deputes/liste/deputes-en-mission>`__.",
|
|
168
|
+
"type": "string"
|
|
169
|
+
},
|
|
170
|
+
"missionSuivanteRef": {
|
|
171
|
+
"description": "Identifiant unique (uid) du mandat suivant. Uniquement pour les `députés en mission auprès du gouvernement <http://www2.assemblee-nationale.fr/deputes/liste/deputes-en-mission>`__.",
|
|
172
|
+
"type": "string"
|
|
173
|
+
},
|
|
174
|
+
"missionPrecedenteRef": {
|
|
175
|
+
"description": "Identifiant unique (uid) du mandat précédent. Uniquement pour les `députés en mission auprès du gouvernement <http://www2.assemblee-nationale.fr/deputes/liste/deputes-en-mission>`__.",
|
|
176
|
+
"type": "string"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"required": [
|
|
180
|
+
"uid",
|
|
181
|
+
"acteurRef",
|
|
182
|
+
"typeOrgane",
|
|
183
|
+
"dateDebut",
|
|
184
|
+
"nominPrincipale",
|
|
185
|
+
"infosQualite",
|
|
186
|
+
"organesRefs"
|
|
187
|
+
],
|
|
188
|
+
|
|
189
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
190
|
+
"$id": "Mandat.json",
|
|
191
|
+
"$$target": "Mandat.json"
|
|
192
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Profession",
|
|
3
|
+
"description": "Profession.",
|
|
4
|
+
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"libelleCourant": {
|
|
9
|
+
"description": "Profession.",
|
|
10
|
+
"type": "string"
|
|
11
|
+
},
|
|
12
|
+
"socProcInsee": {
|
|
13
|
+
"$comment": "Discussion https://forum.en-root.org/t/signification-des-champs-catsocpro-et-famsocpro-d-un-acteur/",
|
|
14
|
+
"type": "object",
|
|
15
|
+
"additionalProperties": false,
|
|
16
|
+
"properties": {
|
|
17
|
+
"catSocPro": {
|
|
18
|
+
"description": "Catégorie socio professionelle de l'INSEE.",
|
|
19
|
+
"type": "string"
|
|
20
|
+
},
|
|
21
|
+
"famSocPro": {
|
|
22
|
+
"description": "Famille socio professionelle de l'INSEE.",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"enum": [
|
|
25
|
+
"Agriculteurs exploitants",
|
|
26
|
+
"Artisans, commerçants et chefs d'entreprise",
|
|
27
|
+
"Autres personnes sans activité professionnelle",
|
|
28
|
+
"Cadres et professions intellectuelles supérieures",
|
|
29
|
+
"Employés",
|
|
30
|
+
"Ouvriers",
|
|
31
|
+
"Professions Intermédiaires",
|
|
32
|
+
"Retraités",
|
|
33
|
+
"Sans profession déclarée"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"required": [
|
|
40
|
+
"socProcInsee"
|
|
41
|
+
],
|
|
42
|
+
|
|
43
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
44
|
+
"$id": "Profession.json",
|
|
45
|
+
"$$target": "Profession.json"
|
|
46
|
+
}
|