Files
pydantic/docs/examples/schema4.json
T
2019-08-05 09:45:37 -05:00

24 lines
316 B
JSON

{
"title": "Person",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"age": {
"title": "Age",
"type": "integer"
}
},
"required": [
"name",
"age"
],
"examples": [
{
"name": "John Doe",
"age": 25
}
]
}