From 73669b0f33f95c0d31c8c83143a3376eea968a65 Mon Sep 17 00:00:00 2001 From: Michael Bideau Date: Mon, 19 Aug 2019 16:43:25 +0000 Subject: [PATCH] JSON schemas: fixed a typo ('Un particulier' instead of 'Une personne physique') --- atreal_openads/json_schemas.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/atreal_openads/json_schemas.py b/atreal_openads/json_schemas.py index 26cf536..ec8a8a5 100644 --- a/atreal_openads/json_schemas.py +++ b/atreal_openads/json_schemas.py @@ -158,12 +158,12 @@ JSON_SCHEMA_CREATE_DOSSIER_IN = { # qualite "anyOf": [ - # if qualite == "Une personne physique" + # if qualite == "Un particulier" # "denomination" and "raison_sociale" are not required # and must be null { "properties": { - "qualite": { "const": "Une personne physique" }, + "qualite": { "const": "Un particulier" }, "denomination" : { "type": "null" }, "raison_sociale": { "type": "null" } } @@ -230,12 +230,12 @@ JSON_SCHEMA_CREATE_DOSSIER_IN = { # mandataire_qualite "anyOf": [ - # if mandataire_qualite == "Une personne physique" + # if mandataire_qualite == "Un particulier" # "mandataire_denomination" and "mandataire_raison_sociale" are not required # and must be null { "properties": { - "mandataire_qualite": { "const": "Une personne physique" }, + "mandataire_qualite": { "const": "Un particulier" }, "mandataire_denomination" : { "type": "null" }, "mandataire_raison_sociale": { "type": "null" } }