Skip to content

OrgId

Unique and unambiguous way to identify an individual or organization.

  • Is optional
  • Type: object

With the following properties:

PropertyTypeRequiredDescriptionDefinition Source
AnyBICObjectOptionalCode allocated to a receiving institution by the ISO 9362 Registration Authority as described in ISO 9362 'Banking - Banking telecommunication messages - Business Identifier Code (BIC)'#/definitions/bic
OthrObjectOptionalUnique identification of an organization, as assigned by an institution, using an identification scheme.Othr
RelShipToDbtrStringOptionalIndicates relationship of the receiving party to the sending party.

Othr

Unique identification of an organization, as assigned by an institution, using an identification scheme.

  • Is optional
  • Type: object

With the following properties:

PropertyTypeRequiredDescription
IdStringOptionalIdentification assigned by an institution. Maximum length: 35 characters
IssrStringOptionalEntity that assigns the identification. Maximum length: 35 characters
DtOfIssStringOptionalInformation that identifies the date of incorporation in ISO Date format (YYYY-MM-DD) for a sending organization or institution.
SchmeNmObjectOptionalName of the identification scheme.

SchmeNm

PropertyTypeRequiredDescription
CdStringOptionalList based on ExternalorganizationIdentification1Code List 29-May-2020, the value of this property must be equal to one of the known values below.
PrtryStringOptionalField to support proprietary value. Maximum length: 35 characters
Cd known values
ValueDescription
BANKBank Party Identification
CBIDCentral Bank Identification Number
CHIDClearing Identification Number
CINCCertificate Of Incorporation Number
COIDCountry Identification Code
CUSTCustome rNumber
DUNSData Universal Numbering System
EMPLEmployer Identification Number
GS1GGS1GLN Identifier
SRENSIREN
SRETSIRET
TXIDTax Identification Number

RelShipToDbtr

ValueDescription
BRANBranch or representative office
CUSTCustomer
FRANFranchisee or franchisor
HOLDHolding company
PARTBusiness partner
SUBSSubsidiary company
SUPPSupplier

JSON schema extract

"OrgId": {
    "type": "object",
    "description": "Unique and unambiguous way to identify an individual or organization.",
    "properties": {
        "AnyBIC": {
            "description": "Code allocated to a receiving institution by the ISO 9362 Registration Authority as described in ISO 9362 'Banking - Banking telecommunication messages - Business identiFer code (BIC)'",
            "$ref": "#/definitions/bic"
        },
        "Othr": {
            "type": "object",
            "description": "Unique identification of an organization, as assigned by an institution, using an identification scheme.",
            "properties": {
                "Id": {
                    "description": "Identification assigned by an institution.",
                    "type": "string",
                    "maxLength": 35
                },
                "Issr": {
                    "description": "Entity that assigns the identification.",
                    "type": "string",
                    "maxLength": 35
                },
                "DtOfIss": {
                    "description": "Information that identifies the date of incorporation in ISO Date format (YYYY-MM-DD) for an organization.",
                    "type": "string",
                    "maxLength": 10
                },
                "SchmeNm": {
                    "type": "object",
                    "description": "Name of the identification scheme.",
                    "properties": {
                        "Cd": {
                            "type": "string",
                            "description": "List based on ExternalorganizationIdentification1Code List 29May2020",
                            "enum": [
                                "BANK",
                                "CBID",
                                "CHID",
                                "CINC",
                                "COID",
                                "CUST",
                                "DUNS",
                                "EMPL",
                                "GS1G",
                                "SREN",
                                "SRET",
                                "TXID"
                            ]
                        },
                        "Prtry": {
                            "type": "string",
                            "description": "Field to support proprietary value",
                            "maxLength": 35
                        }
                    }
                }
            }
        }
    }
}