Properties
| Name | Type | Description |
|---|---|---|
| id | string | Artifact identifier |
| name | string | Artifact name |
| kind | string | Artifact kind |
| url | string | Storage URL for the artifact |
| scenarioId | string | Associated scenario |
| executionId | string | Execution that produced this artifact |
| description | string | Artifact description |
| createdAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Artifact",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Artifact identifier"
},
"name": {
"type": "string",
"description": "Artifact name"
},
"kind": {
"type": "string",
"description": "Artifact kind"
},
"url": {
"type": "string",
"description": "Storage URL for the artifact"
},
"scenarioId": {
"type": "string",
"description": "Associated scenario"
},
"executionId": {
"type": "string",
"description": "Execution that produced this artifact"
},
"description": {
"type": "string",
"description": "Artifact description"
},
"createdAt": {
"type": "string"
}
}
}