{ "$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-artifact-structure.json", "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." } ] } }, "name": "Artifact" }