{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-device-farm/refs/heads/main/json-schema/amazon-device-farm-sample-schema.json", "title": "Sample", "description": "Represents a sample of performance data.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The sample's ARN." } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/SampleType" }, { "description": "

The sample's type.

Must be one of the following values:

" } ] }, "url": { "allOf": [ { "$ref": "#/components/schemas/URL" }, { "description": "The presigned Amazon S3 URL that can be used with a GET request to download the sample's file." } ] } } }