Skip to content

Instantly share code, notes, and snippets.

@uLucasFraga
Last active June 26, 2020 22:28
Show Gist options
  • Save uLucasFraga/32a4f87566dc1a7070f1b3b76d2b2bc6 to your computer and use it in GitHub Desktop.
Save uLucasFraga/32a4f87566dc1a7070f1b3b76d2b2bc6 to your computer and use it in GitHub Desktop.
Exemplo de um schema.json
{
"type": "object",
"properties": {
"quantidade": {
"type": "integer"
},
"usuarios": {
"type": "array",
"items": {
"type": "object",
"properties": {
"nome": {
"type": "string"
},
"email": {
"type": "string"
},
"password": {
"type": "string"
},
"administrador": {
"type": "string"
},
"_id": {
"type": "string"
}
},
"required": [
"nome",
"email",
"password",
"administrador",
"_id"
]
}
}
},
"required": [
"quantidade",
"usuarios"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment