{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Email", "title": "Email", "type": "object", "properties": { "type": { "type": "string", "readOnly": true, "enum": [ "PRIMARY", "SECONDARY", "PERSONAL", "WORK", "OTHERS" ] }, "value": { "type": "string", "readOnly": true } } }