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

parent f8dfb1d9
......@@ -8,8 +8,16 @@
"id": { "type": "integer" },
"name": { "type": "string" },
"milestone": {
"id": { "type": "integer" },
"title": { "type": "string" }
"type": ["object", "null"],
"required": [
"id",
"title"
],
"properties": {
"id": { "type": "integer" },
"title": { "type": "string" }
},
"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