mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
24 lines
316 B
JSON
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
|
|
}
|
|
]
|
|
} |