blob: 3e9fff723c1d69cc643f54a1bb686d2573d1c68c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
"type": "object",
"required": [
"id",
"name",
"description",
"created_at"
],
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" },
"description": { "type": ["string", "null"] },
"created_at": { "type": "string", "format": "date-time" }
},
"additionalProperties": false
}
|