Revert "[kyb] add issuing authority to IDs"#482
Conversation
This reverts commit 28f252e.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
✱ Stainless preview builds for gridThis PR will update the cli csharp go kotlin openapi php python ruby typescript
|
Greptile SummaryThis PR reverts #480, removing the
Confidence Score: 5/5Straightforward revert that removes a single optional field from three source schemas and their two bundled outputs — all copies are consistent and nothing else is touched. The change is a clean, mechanical revert: the same four-line block is removed from each schema file, and both bundled specs (openapi.yaml and mintlify/openapi.yaml) reflect the removal at every inline occurrence. No logic, validation, or required fields are affected. No files require special attention.
|
| Filename | Overview |
|---|---|
| openapi/components/schemas/customers/BeneficialOwnerPersonalInfo.yaml | Removes issuingAuthority field from BeneficialOwnerPersonalInfo schema — clean revert of #480. |
| openapi/components/schemas/customers/BeneficialOwnerPersonalInfoUpdate.yaml | Removes issuingAuthority field from BeneficialOwnerPersonalInfoUpdate schema — consistent with the revert. |
| openapi/components/schemas/customers/PersonalIdentification.yaml | Removes issuingAuthority field from PersonalIdentification schema — consistent with the revert. |
| openapi.yaml | Bundled OpenAPI spec updated at both inline schema locations to remove issuingAuthority — in sync with source schema changes. |
| mintlify/openapi.yaml | Mintlify bundled OpenAPI spec updated at both inline schema locations to remove issuingAuthority — mirrors openapi.yaml changes. |
Class Diagram
%%{init: {'theme': 'neutral'}}%%
classDiagram
class BeneficialOwnerPersonalInfo {
string idNumber
string idType
string issuingCountry
~~string issuingAuthority~~ removed
}
class BeneficialOwnerPersonalInfoUpdate {
string idNumber
string idType
string issuingCountry
~~string issuingAuthority~~ removed
}
class PersonalIdentification {
string idNumber
string idType
string issuingCountry
~~string issuingAuthority~~ removed
}
BeneficialOwnerPersonalInfo ..> PersonalIdentification : references
BeneficialOwnerPersonalInfoUpdate ..> PersonalIdentification : references
Reviews (1): Last reviewed commit: "Revert "[kyb] add issuing authority to I..." | Re-trigger Greptile
Reverts #480
oops. realized we want this on the document object, not on the beneficial owner