access_footer_links

The links in the App Launcher footer.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-footer-links-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/access_footer_links",
  "title": "access_footer_links",
  "description": "The links in the App Launcher footer.",
  "example": [
    {
      "name": "Cloudflare's Privacy Policy",
      "url": "https://www.cloudflare.com/privacypolicy/"
    }
  ],
  "items": {
    "properties": {
      "name": {
        "description": "The hypertext in the footer link.",
        "example": "Cloudflare's Privacy Policy",
        "type": "string"
      },
      "url": {
        "description": "the hyperlink in the footer link.",
        "example": "https://www.cloudflare.com/privacypolicy/",
        "type": "string"
      }
    },
    "required": [
      "name",
      "url"
    ],
    "type": "object"
  },
  "type": "array"
}