Add required fields to the 'milestone' property on the board JSON schema

parent f8dfb1d9
...@@ -8,8 +8,16 @@ ...@@ -8,8 +8,16 @@
"id": { "type": "integer" }, "id": { "type": "integer" },
"name": { "type": "string" }, "name": { "type": "string" },
"milestone": { "milestone": {
"id": { "type": "integer" }, "type": ["object", "null"],
"title": { "type": "string" } "required": [
"id",
"title"
],
"properties": {
"id": { "type": "integer" },
"title": { "type": "string" }
},
"additionalProperties": false
} }
}, },
"additionalProperties": false "additionalProperties": false
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment