Bookmark Application

APIs.ioEngineeringPlatform

Properties

Name Type Description
app_launcher_visible object
domain object The URL or domain of the bookmark.
logo_url object
name object
type string The application type.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-schemas-bookmark-props-schema.json Raw ↑
{
  "$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"
}