{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"email": {
"type": "string",
"format": "email"
},
"role": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"profile": {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"zip": {
"type": "string"
}
},
"required": [
"city"
]
},
"phone": {
"type": "null"
}
},
"required": [
"id",
"email",
"role",
"createdAt",
"tags",
"profile"
]
}5 errores
⚡ by MACM · miguelacm.es