mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 01:53:42 +08:00
8626c99a7d
Switch to using json schema files for describing the requests and responses.
21 lines
303 B
JSON
21 lines
303 B
JSON
{
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"group": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"name"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"group"
|
|
]
|
|
}
|