Azure DevTest Labs · Schema
ArtifactProperties
Properties of an artifact.
AzureDevelopmentInfrastructureLabsTestingVirtual Machines
Properties
| Name | Type | Description |
|---|---|---|
| createdDate | string | The artifact's creation date. |
| description | string | The artifact's description. |
| filePath | string | The file path to the artifact. |
| icon | string | The URI to the artifact icon. |
| parameters | object | The artifact's parameters. |
| publisher | string | The artifact's publisher. |
| targetOsType | string | The artifact's target OS. |
| title | string | The artifact's title. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-test-labs/refs/heads/main/json-schema/azure-test-labs-artifact-properties-schema.json",
"title": "ArtifactProperties",
"description": "Properties of an artifact.",
"type": "object",
"properties": {
"createdDate": {
"description": "The artifact's creation date.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"description": {
"description": "The artifact's description.",
"readOnly": true,
"type": "string"
},
"filePath": {
"description": "The file path to the artifact.",
"readOnly": true,
"type": "string"
},
"icon": {
"description": "The URI to the artifact icon.",
"readOnly": true,
"type": "string"
},
"parameters": {
"description": "The artifact's parameters.",
"readOnly": true,
"type": "object"
},
"publisher": {
"description": "The artifact's publisher.",
"readOnly": true,
"type": "string"
},
"targetOsType": {
"description": "The artifact's target OS.",
"readOnly": true,
"type": "string"
},
"title": {
"description": "The artifact's title.",
"readOnly": true,
"type": "string"
}
}
}