Skip to content

Instantly share code, notes, and snippets.

@Pierry
Created September 27, 2018 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pierry/1149abaee8873a3adb402dc638e24dd1 to your computer and use it in GitHub Desktop.
Save Pierry/1149abaee8873a3adb402dc638e24dd1 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"Status do agendamento": {
"type": "string"
},
"Data e hora da coleta": {
"type": "string"
},
"Data e hora do primeiro resultado": {
"type": "string"
},
"Data e hora do último resultado": {
"type": "string"
},
"Endereço da coleta": {
"type": "object",
"properties": {
"Logradouro": {
"type": "string"
},
"Endereço": {
"type": "string"
},
"Número": {
"type": "number"
},
"Complemento": {
"type": "string"
}
}
},
"Exames": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"nome": {
"type": "string"
},
"data e hora do resultado": {
"type": "string"
},
"Preparo": {
"type": "string"
},
"Url do pdf": {
"type": "string"
}
},
"required": [
"id",
"nome",
"data e hora do resultado",
"Preparo",
"Url do pdf"
]
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment