DEV: Document basic-info endpoint (#26471)

This commit is contained in:
Blake Erickson
2024-04-02 14:53:19 -06:00
committed by GitHub
parent 797ab30d95
commit 8b1b368693
2 changed files with 68 additions and 0 deletions

View 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"
]
}