action apple_devices_get_instance { label: "devices-get_instance" provider: apple method: GET path: "/v1/devices/{id}" encoding: json input: { type: "object" properties: { "fields[devices]": { type: "array" items: { type: "string" enum: ["addedDate", "deviceClass", "model", "name", "platform", "status", "udid"] } } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "object" required: ["id", "links", "type"] properties: { attributes: { type: "object" properties: { addedDate: { type: "string" format: "date-time" } deviceClass: { type: "string" enum: ["APPLE_WATCH", "IPAD", "IPHONE", "IPOD", "APPLE_TV", "MAC"] } model: { type: "string" } name: { type: "string" } platform: { type: "string" enum: ["IOS", "MAC_OS"] } status: { type: "string" enum: ["ENABLED", "DISABLED"] } udid: { type: "string" } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } type: { type: "string" enum: ["devices"] } } } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } } } }