changedInput schema / anyOf
Previous value: -[
- {
- "required": [
- "club_name"
- ]
- },
- {
- "required": [
- "organisme_id"
- ]
- }
-]New value: +[
+ {
+ "required": [
+ "organisme_id"
+ ]
+ },
+ {
+ "required": [
+ "club_name"
+ ]
+ },
+ {
+ "required": [
+ "engagement_id"
+ ]
+ },
+ {
+ "required": [
+ "poule_id"
+ ]
+ },
+ {
+ "required": [
+ "competition_id"
+ ]
+ }
+]
addedInput schema / properties / categorie / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / categorie / default
Added value: +null
changedInput schema / properties / categorie / description
Previous value: -"Catégorie de l'équipe précise (ex: 'U11M1', 'U11M', 'U11F')"New value: +"Catégorie de l'équipe précise (ex: 'U11M1', 'U11M', 'SEM1', 'NM3')."
removedInput schema / properties / categorie / type
Removed value: -"string"
addedInput schema / properties / competition_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ID FFBB de la compétition pour désambiguïser.",
+ "title": "Competition Id"
+}
addedInput schema / properties / competition_type
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Type de compétition ('PLAT', 'COUPE', etc.) pour désambiguïser.",
+ "title": "Competition Type"
+}
addedInput schema / properties / engagement_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ID FFBB de l'engagement (prioritaire pour désambiguïser).",
+ "title": "Engagement Id"
+}
addedInput schema / properties / numero_equipe / anyOf
Added value: +[
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / numero_equipe / default
Previous value: -1New value: +null
removedInput schema / properties / numero_equipe / type
Removed value: -"integer"
changedInput schema / properties / organisme_id / description
Previous value: -"Identifiant FFBB du club (organisme_id, ex: 1234 ou 'ARA0063058')"New value: +"Identifiant FFBB du club (organisme_id, ex: '9326' ou 'ARA0063058')."
addedInput schema / properties / poule_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ID FFBB de la poule pour désambiguïser.",
+ "title": "Poule Id"
+}
addedInput schema / properties / season_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ID de la saison FFBB (optionnel).",
+ "title": "Season Id"
+}
removedInput schema / required
Removed value: -[
- "categorie"
-]