-
Notifications
You must be signed in to change notification settings - Fork 196
Open
Labels
Description
unfortunately, the validator does not allow the enum
type in the json schema.
"contacts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"is_main": {
"type": "boolean"
},
"contact_value": {
"type": "string"
},
"contact_type": {
"enum": [
"email",
"phone",
"social_url",
"web_site"
]
}
}
}
},