{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://schema.mydesignsystem.com/footer.schema.json",
  "title": "Footer",
  "description": "Footer component for displaying site logo, byline, and navigation items at the bottom of the page.",
  "type": "object",
  "properties": {
    "logo": {
      "title": "Logo",
      "type": "object",
      "properties": {
        "src": {
          "$ref": "http://schema.mydesignsystem.com/logo.schema.json#/properties/src"
        },
        "srcInverted": {
          "$ref": "http://schema.mydesignsystem.com/logo.schema.json#/properties/srcInverted"
        },
        "alt": {
          "$ref": "http://schema.mydesignsystem.com/logo.schema.json#/properties/alt"
        },
        "homepageHref": {
          "$ref": "http://schema.mydesignsystem.com/logo.schema.json#/properties/homepageHref"
        },
        "width": {
          "$ref": "http://schema.mydesignsystem.com/logo.schema.json#/properties/width"
        },
        "height": {
          "$ref": "http://schema.mydesignsystem.com/logo.schema.json#/properties/height"
        }
      }
    },
    "byline": {
      "title": "Byline",
      "description": "Small line of text displayed below the logo",
      "type": "string",
      "default": "© 2024 systemics Inc. All rights reserved."
    },
    "inverted": {
      "type": "boolean",
      "title": "Inverted",
      "description": "Invert the color scheme of the footer",
      "default": false
    },
    "navItems": {
      "$ref": "http://schema.mydesignsystem.com/nav-main.schema.json#/properties/items"
    }
  },
  "required": ["logo"],
  "additionalProperties": false
}
