{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-private-ca/refs/heads/main/json-schema/amazon-private-ca-edi-party-name-schema.json", "title": "EdiPartyName", "description": "Describes an Electronic Data Interchange (EDI) entity as described in as defined in Subject Alternative Name in RFC 5280.", "type": "object", "properties": { "PartyName": { "allOf": [ { "$ref": "#/components/schemas/String256" }, { "description": "Specifies the party name." } ] }, "NameAssigner": { "allOf": [ { "$ref": "#/components/schemas/String256" }, { "description": "Specifies the name assigner." } ] } }, "required": [ "PartyName" ] }