{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_schemas-bookmark_props", "title": "Bookmark Application", "properties": { "app_launcher_visible": { "default": true }, "domain": { "description": "The URL or domain of the bookmark.", "example": "https://mybookmark.com" }, "logo_url": { "$ref": "#/components/schemas/access_logo_url" }, "name": { "$ref": "#/components/schemas/access_apps_components-schemas-name" }, "type": { "description": "The application type.", "example": "bookmark", "type": "string" } }, "required": [ "type", "domain" ], "type": "object" }