blob: f427dd7a647b6bc42c74941d4d232bb521b445af (
plain)
1
2
3
4
5
6
7
8
9
10
|
{
"type": "object",
"properties": {
"id": { "type": "integer" },
"title": { "type": "string" },
"body": { "type": "string" },
"published": { "type": "boolean" }
},
"required": ["id", "title", "body", "published"]
}
|