Skip to content

Instantly share code, notes, and snippets.

@amaralrfl
Created September 3, 2021 20:10
Show Gist options
  • Save amaralrfl/aa4ecc4ce56d995dfa243d4b67cab509 to your computer and use it in GitHub Desktop.
Save amaralrfl/aa4ecc4ce56d995dfa243d4b67cab509 to your computer and use it in GitHub Desktop.
JSON Schema reduzido da lista de produtos do ServeRest
{
"type": "object",
"required": [
"quantidade",
"produtos"
],
"properties": {
"quantidade": {
"type": "integer",
"default": 0
},
"produtos": {
"type": "array",
"additionalItems": true,
"items": {
"anyOf": [
{
"type": "object",
"required": [
"nome",
"descricao",
"preco",
"quantidade",
"_id"
],
"properties": {
"nome": {
"type": "string"
},
"descricao": {
"type": "string"
},
"preco": {
"type": "integer"
},
"quantidade": {
"type": "integer",
"default": 0
},
"_id": {
"type": "string"
}
},
"additionalProperties": true
}
]
}
}
},
"additionalProperties": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment