{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Identifier", "title": "Identifier", "type": "object", "properties": { "type": { "type": "string", "description": "Type of Identifier", "readOnly": true, "enum": [ "NIE", "DNI", "EIN", "BN", "AADHAR", "NIN", "NRIC" ] }, "value": { "type": "string", "description": "Value of the identifier", "readOnly": true } } }