{ "$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" } } } }