summaryrefslogtreecommitdiff
path: root/schemas/post.json
blob: a7a3a36b0c611cc850e3c5b6858b77e580ea9b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
    "type": "object",
    "properties": {
        "id": { "type": "integer" },
        "title": { "type": "string" },
        "body": { "type": "string" },
        "published": { "type": "boolean" }
    },
    "required": ["id", "title", "body", "published"],
    "additionalProperties": false
}