Box · Schema

Device pinner

Device pins allow enterprises to control what devices can use native Box applications.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
id string The unique identifier for this device pin.
type string `device_pinner`
owned_by object
product_name string The type of device being pinned
View JSON Schema on GitHub

JSON Schema

box-devicepinner-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DevicePinner",
  "title": "Device pinner",
  "type": "object",
  "x-box-resource-id": "device_pinner",
  "x-box-tag": "device_pinners",
  "description": "Device pins allow enterprises to control what devices can\nuse native Box applications.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for this device pin.",
      "example": "11446498"
    },
    "type": {
      "type": "string",
      "description": "`device_pinner`",
      "example": "device_pinner",
      "enum": [
        "device_pinner"
      ]
    },
    "owned_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/User--Mini"
        },
        {
          "description": "The user that the device pin belongs to"
        }
      ]
    },
    "product_name": {
      "type": "string",
      "description": "The type of device being pinned",
      "example": "iPad"
    }
  }
}