{ "$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-artifact-schema.json", "title": "Artifact", "description": "Represents the output of a test. Examples of artifacts include logs and screenshots.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The artifact's ARN." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The artifact's name." } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/ArtifactType" }, { "description": "

The artifact's type.

Allowed values include the following:

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