{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-fault-injection-simulator/refs/heads/main/json-structure/amazon-fis-experiment-template-action-structure.json", "description": "Action definition in an experiment template", "type": "object", "properties": { "actionId": { "type": "string", "description": "FIS action ID", "example": "aws:ec2:stop-instances" }, "description": { "type": "string", "description": "Action description" }, "parameters": { "type": "object", "description": "Action parameters", "additionalProperties": { "type": "string" } }, "targets": { "type": "object", "description": "Target mappings", "additionalProperties": { "type": "string" } }, "startAfter": { "type": "array", "description": "Actions that must complete first", "items": { "type": "string" } } }, "name": "ExperimentTemplateAction" }