{ "$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" } } }