mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Document basic-info endpoint (#26471)
This commit is contained in:
47
spec/requests/api/schemas/json/site_basic_info_response.json
Normal file
47
spec/requests/api/schemas/json/site_basic_info_response.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"logo_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"logo_small_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"apple_touch_icon_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"favicon_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"header_primary_color": {
|
||||
"type": "string"
|
||||
},
|
||||
"header_background_color": {
|
||||
"type": "string"
|
||||
},
|
||||
"login_required": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"mobile_logo_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"logo_url",
|
||||
"logo_small_url",
|
||||
"apple_touch_icon_url",
|
||||
"favicon_url",
|
||||
"title",
|
||||
"description",
|
||||
"header_primary_color",
|
||||
"header_background_color",
|
||||
"login_required",
|
||||
"mobile_logo_url"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user