Last active
June 26, 2020 22:28
-
-
Save uLucasFraga/32a4f87566dc1a7070f1b3b76d2b2bc6 to your computer and use it in GitHub Desktop.
Exemplo de um schema.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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