Ghost · Schema
Site
Basic information about the Ghost site.
PublishingNewslettersMembershipsContentOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| title | string | Site title |
| description | string | Site description |
| logo | string | Site logo URL |
| icon | string | Site icon URL |
| accent_color | string | Accent color |
| url | string | Site URL |
| version | string | Ghost version |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Site",
"title": "Site",
"type": "object",
"description": "Basic information about the Ghost site.",
"properties": {
"title": {
"type": "string",
"description": "Site title"
},
"description": {
"type": "string",
"description": "Site description"
},
"logo": {
"type": "string",
"format": "uri",
"description": "Site logo URL",
"nullable": true
},
"icon": {
"type": "string",
"format": "uri",
"description": "Site icon URL",
"nullable": true
},
"accent_color": {
"type": "string",
"description": "Accent color",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"description": "Site URL"
},
"version": {
"type": "string",
"description": "Ghost version"
}
}
}