Amazon Fault Injection Simulator · Schema
Experiment
A fault injection experiment instance
Chaos EngineeringDevOpsFault InjectionResilience Testing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Experiment ID |
| arn | string | Experiment ARN |
| experimentTemplateId | string | Source template ID |
| roleArn | string | IAM role used |
| state | object | |
| targets | object | Resolved targets |
| actions | object | Experiment actions |
| stopConditions | array | Stop conditions |
| startTime | string | Experiment start time |
| endTime | string | Experiment end time |
| tags | object | Resource tags |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-fault-injection-simulator/refs/heads/main/json-schema/amazon-fis-experiment-schema.json",
"title": "Experiment",
"description": "A fault injection experiment instance",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Experiment ID",
"example": "EXP123"
},
"arn": {
"type": "string",
"description": "Experiment ARN",
"example": "arn:aws:fis:us-east-1:123456789012:experiment/EXP123"
},
"experimentTemplateId": {
"type": "string",
"description": "Source template ID",
"example": "EXT123"
},
"roleArn": {
"type": "string",
"description": "IAM role used"
},
"state": {
"$ref": "#/components/schemas/ExperimentState"
},
"targets": {
"type": "object",
"description": "Resolved targets",
"additionalProperties": {
"type": "object"
}
},
"actions": {
"type": "object",
"description": "Experiment actions",
"additionalProperties": {
"type": "object"
}
},
"stopConditions": {
"type": "array",
"description": "Stop conditions",
"items": {
"type": "object"
}
},
"startTime": {
"type": "string",
"format": "date-time",
"description": "Experiment start time"
},
"endTime": {
"type": "string",
"format": "date-time",
"description": "Experiment end time"
},
"tags": {
"type": "object",
"description": "Resource tags",
"additionalProperties": {
"type": "string"
}
}
}
}