Properties
| Name | Type | Description |
|---|---|---|
| app_launcher_visible | object | |
| domain | string | The URL or domain of the bookmark. |
| logo_url | object | |
| name | object | |
| tags | object | |
| type | string | The application type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/access_bookmark_props",
"title": "Bookmark application",
"properties": {
"app_launcher_visible": {
"$ref": "#/components/schemas/access_app_launcher_visible"
},
"domain": {
"description": "The URL or domain of the bookmark.",
"example": "https://mybookmark.com",
"type": "string"
},
"logo_url": {
"$ref": "#/components/schemas/access_logo_url"
},
"name": {
"$ref": "#/components/schemas/access_apps_components-schemas-name"
},
"tags": {
"$ref": "#/components/schemas/access_tags"
},
"type": {
"description": "The application type.",
"example": "bookmark",
"type": "string"
}
},
"type": "object"
}