Ghost · Schema

NavigationItem

A navigation menu item with a label and URL

PublishingNewslettersMembershipsContentOpen Source

Properties

Name Type Description
label string Display label for the navigation item
url string URL the navigation item links to
View JSON Schema on GitHub

JSON Schema

ghost-navigationitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NavigationItem",
  "title": "NavigationItem",
  "type": "object",
  "description": "A navigation menu item with a label and URL",
  "properties": {
    "label": {
      "type": "string",
      "description": "Display label for the navigation item"
    },
    "url": {
      "type": "string",
      "description": "URL the navigation item links to"
    }
  },
  "required": [
    "label",
    "url"
  ]
}