The links in the App Launcher footer.
{ "$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" }