Skip to main content
Glama

get_directors

Read-onlyIdempotent

Detail des dirigeants d'une entreprise avec structure hierarchique.

Retourne les dirigeants classes par importance (decisionnaires en premier). Deux types d'entrees :

  • PP (personne physique) : nom, prenom, role, annee de naissance, date_debut_mandat, date_fin_mandat, linkedin_url

  • PM (personne morale) : denomination, SIREN, role, date_debut_mandat, date_fin_mandat, avec un tableau representants[] listant les personnes physiques qui la representent (nom, prenom, role dans la PM, dates de mandat)

Inclut les commissaires aux comptes (role="CAC") avec leur date de debut/fin de mandat. Utile pour identifier le mandataire actif vs sortant.

linkedin_url est le profil LinkedIn de la personne physique, present uniquement quand un profil a ete apparie avec certitude (nom + prenom + date de naissance). La clef est absente quand aucun profil n'est confirme : c'est le cas courant, pas une anomalie. Reserve au plan pro.

Par defaut, seuls les mandataires actifs sont retournes. Utiliser include_inactive=true pour inclure l'historique.

Pour plusieurs entreprises, le parametre sirens sert jusqu'a 10 societes en une requete. Le lot rend les 20 premiers mandataires de CHAQUE societe et signale celles qu'il a tronquees : limit et offset n'ont pas de sens sur dix societes a la fois, et l'appel unitaire reste la pour derouler l'historique complet d'une seule.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNombre de resultats (defaut 20, max 100). Sans effet avec sirens : le lot sert 20 lignes par societe.
sirenNoSIREN a 9 chiffres
offsetNoPagination (defaut 0). Sans effet avec sirens, qui ne pagine pas.
sirensNoPlusieurs SIREN en un appel, 10 au maximum, au lieu de repeter l'appel societe par societe. Exclusif avec siren. Le cout de quota est identique (1 par societe), ce qui change est le nombre de requetes.
include_inactiveNoInclure les mandataires inactifs (historique). Defaut: false

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "linkedin_url": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_credits_remaining": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  2. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "linkedin_url": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_credits_remaining": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  3. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "linkedin_url": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_credits_remaining": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  4. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "linkedin_url": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_credits_remaining": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  5. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "linkedin_url": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_credits_remaining": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  6. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "linkedin_url": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_credits_remaining": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  7. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "linkedin_url": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_credits_remaining": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  8. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "linkedin_url": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_credits_remaining": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  9. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "linkedin_url": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_credits_remaining": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  10. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "linkedin_url": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_credits_remaining": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  11. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "linkedin_url": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_credits_remaining": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  12. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "linkedin_url": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_credits_remaining": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  13. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_credits_remaining": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "linkedin_url": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_credits_remaining": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  14. Changed1 schema field changed
    • changedOutput schema / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "actif": {
      -              "type": "boolean"
      -            },
      -            "annee_naissance": {
      -              "anyOf": [
      -                {
      -                  "type": "number"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_debut_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "date_fin_mandat": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "nom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "prenom": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "representants": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "role": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "type": {
      -              "enum": [
      -                "PP",
      -                "PM"
      -              ],
      -              "type": "string"
      -            }
      -          },
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "denomination": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "message": {
      -        "type": "string"
      -      },
      -      "pagination": {
      -        "additionalProperties": {},
      -        "properties": {
      -          "has_more": {
      -            "type": "boolean"
      -          },
      -          "limit": {
      -            "type": "number"
      -          },
      -          "offset": {
      -            "type": "number"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "siren": {
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "siren",
      -      "data"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": {},
      -    "properties": {
      -      "_quota_remaining_month": {
      -        "type": "number"
      -      },
      -      "_quota_remaining_today": {
      -        "type": "number"
      -      },
      -      "_user_plan": {
      -        "type": "string"
      -      },
      -      "data": {
      -        "items": {
      -          "additionalProperties": {},
      -          "properties": {
      -            "data": {
      -              "items": {
      -                "additionalProperties": {},
      -                "propertyNames": {
      -                  "type": "string"
      -                },
      -                "type": "object"
      -              },
      -              "type": "array"
      -            },
      -            "denomination": {
      -              "anyOf": [
      -                {
      -                  "type": "string"
      -                },
      -                {
      -                  "type": "null"
      -                }
      -              ]
      -            },
      -            "siren": {
      -              "type": "string"
      -            },
      -            "total": {
      -              "type": "number"
      -            },
      -            "truncated": {
      -              "type": "boolean"
      -            }
      -          },
      -          "required": [
      -            "siren",
      -            "data"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "duplicates_ignored": {
      -        "type": "number"
      -      },
      -      "not_found": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "per_company_limit": {
      -        "type": "number"
      -      },
      -      "requested": {
      -        "type": "number"
      -      },
      -      "returned": {
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "data"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_credits_remaining": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
  15. Changed8 schema fields changed
    • changedInput schema / properties / limit / description
      Previous value: -"Nombre de resultats (defaut 20, max 100)"New value: +"Nombre de resultats (defaut 20, max 100). Sans effet avec sirens : le lot sert 20 lignes par societe."
    • changedInput schema / properties / offset / description
      Previous value: -"Pagination (defaut 0)"New value: +"Pagination (defaut 0). Sans effet avec sirens, qui ne pagine pas."
    • addedInput schema / properties / sirens
      Added value: +{
      +  "description": "Plusieurs SIREN en un appel, 10 au maximum, au lieu de repeter l'appel societe par societe. Exclusif avec siren. Le cout de quota est identique (1 par societe), ce qui change est le nombre de requetes.",
      +  "items": {
      +    "type": "string"
      +  },
      +  "maxItems": 10,
      +  "minItems": 1,
      +  "type": "array"
      +}
    • removedInput schema / required
      Removed value: -[
      -  "siren"
      -]
    • removedOutput schema / additionalProperties
      Removed value: -{}
    • addedOutput schema / anyOf
      Added value: +[
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "actif": {
      +              "type": "boolean"
      +            },
      +            "annee_naissance": {
      +              "anyOf": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_debut_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "date_fin_mandat": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "nom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "prenom": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "representants": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "role": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "type": {
      +              "enum": [
      +                "PP",
      +                "PM"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "denomination": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "message": {
      +        "type": "string"
      +      },
      +      "pagination": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "has_more": {
      +            "type": "boolean"
      +          },
      +          "limit": {
      +            "type": "number"
      +          },
      +          "offset": {
      +            "type": "number"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "siren": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "siren",
      +      "data"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "properties": {
      +      "_quota_remaining_month": {
      +        "type": "number"
      +      },
      +      "_quota_remaining_today": {
      +        "type": "number"
      +      },
      +      "_user_plan": {
      +        "type": "string"
      +      },
      +      "data": {
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "data": {
      +              "items": {
      +                "additionalProperties": {},
      +                "propertyNames": {
      +                  "type": "string"
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "denomination": {
      +              "anyOf": [
      +                {
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "siren": {
      +              "type": "string"
      +            },
      +            "total": {
      +              "type": "number"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "siren",
      +            "data"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "duplicates_ignored": {
      +        "type": "number"
      +      },
      +      "not_found": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "per_company_limit": {
      +        "type": "number"
      +      },
      +      "requested": {
      +        "type": "number"
      +      },
      +      "returned": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "data"
      +    ],
      +    "type": "object"
      +  }
      +]
    • removedOutput schema / properties
      Removed value: -{
      -  "_user_plan": {
      -    "type": "string"
      -  },
      -  "data": {
      -    "items": {
      -      "additionalProperties": {},
      -      "properties": {
      -        "actif": {
      -          "type": "boolean"
      -        },
      -        "annee_naissance": {
      -          "anyOf": [
      -            {
      -              "type": "number"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ]
      -        },
      -        "date_debut_mandat": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ]
      -        },
      -        "date_fin_mandat": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ]
      -        },
      -        "denomination": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ]
      -        },
      -        "nom": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ]
      -        },
      -        "prenom": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ]
      -        },
      -        "representants": {
      -          "items": {
      -            "additionalProperties": {},
      -            "propertyNames": {
      -              "type": "string"
      -            },
      -            "type": "object"
      -          },
      -          "type": "array"
      -        },
      -        "role": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ]
      -        },
      -        "siren": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ]
      -        },
      -        "type": {
      -          "enum": [
      -            "PP",
      -            "PM"
      -          ],
      -          "type": "string"
      -        }
      -      },
      -      "type": "object"
      -    },
      -    "type": "array"
      -  },
      -  "denomination": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ]
      -  },
      -  "message": {
      -    "type": "string"
      -  },
      -  "pagination": {
      -    "additionalProperties": {},
      -    "properties": {
      -      "has_more": {
      -        "type": "boolean"
      -      },
      -      "limit": {
      -        "type": "number"
      -      },
      -      "offset": {
      -        "type": "number"
      -      }
      -    },
      -    "type": "object"
      -  },
      -  "siren": {
      -    "type": "string"
      -  }
      -}
    • removedOutput schema / required
      Removed value: -[
      -  "siren",
      -  "data"
      -]
  16. Changed1 schema field changed
    • changedOutput schema / properties / pagination / additionalProperties
      Previous value: -falseNew value: +{}
  17. Changed3 schema fields changed
    • addedInput schema / additionalProperties
      Added value: +false
    • removedInput schema / properties / context
      Removed value: -{
      -  "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\"",
      -  "type": "string"
      -}
    • changedInput schema / required
      Previous value: -[
      -  "siren",
      -  "context"
      -]New value: +[
      +  "siren"
      +]
  18. Changed3 schema fields changed
    • removedInput schema / additionalProperties
      Removed value: -false
    • addedInput schema / properties / context
      Added value: +{
      +  "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\"",
      +  "type": "string"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "siren"
      -]New value: +[
      +  "siren",
      +  "context"
      +]
  19. First observed

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Even with readOnlyHint/idempotentHint already set, the description adds substantial behavioral context: directors sorted by importance, PP/PM structures, CAC inclusion, linkedin_url only present when matched with certainty, batch truncation with a signal for truncated companies, and identical quota cost for batch vs single calls. This goes well beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but every sentence carries useful information. It is well-structured with bolded terms, bullet-like sections for PP/PM, and clear parameter behavior notes. There is no filler or repetition of schema content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers output structure, ordering, default filtering, inclusion of inactive officers, batch behavior, truncation signaling, LinkedIn URL semantics, quota cost, and the distinction between single and multi-company calls. Given the complexity and the presence of an output schema, nothing critical is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description still adds meaning beyond raw schema: it explains that limit/offset have no effect with sirens, that sirens returns 20 lines per company, that include_inactive=false is the default, and that siren/sirens are mutually exclusive. This materially helps an agent select and combine parameters correctly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool returns company directors with a hierarchical structure, sorted by importance, and distinguishes between natural and legal person entries. It is specific about the resource and output, but it does not explicitly differentiate this tool from sibling tools like search_directors or search_director_companies.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: by default active directors are returned, include_inactive adds history, and sirens is recommended for up to 10 companies in one call while the single-company call is for full history. It does not explicitly state when to prefer this over sibling director-search tools, so exclusion guidance is missing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources