{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-device-farm/refs/heads/main/json-structure/amazon-device-farm-device-structure.json", "description": "Represents a device type that an app is tested against.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The device's ARN." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The device's display name." } ] }, "manufacturer": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The device's manufacturer name." } ] }, "model": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The device's model name." } ] }, "modelId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The device's model ID." } ] }, "formFactor": { "allOf": [ { "$ref": "#/components/schemas/DeviceFormFactor" }, { "description": "
The device's form factor.
Allowed values include:
PHONE
TABLET
The device's platform.
Allowed values include:
ANDROID
IOS
This flag is set to true if remote debugging is enabled for the device.
Remote debugging is no longer supported.
" } ] }, "fleetType": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The type of fleet to which this device belongs. Possible values are PRIVATE and PUBLIC." } ] }, "fleetName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The name of the fleet to which this device belongs." } ] }, "instances": { "allOf": [ { "$ref": "#/components/schemas/DeviceInstances" }, { "description": "The instances that belong to this device." } ] }, "availability": { "allOf": [ { "$ref": "#/components/schemas/DeviceAvailability" }, { "description": "Indicates how likely a device is available for a test run. Currently available in the ListDevices and GetDevice API methods." } ] } }, "name": "Device" }