{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActionModuleAction", "title": "ActionModuleAction", "type": "object", "additionalProperties": false, "properties": { "action_id": { "type": "string", "description": "The unique ID of the action." }, "action_name": { "type": "string", "description": "The name of the action." }, "module_version_id": { "type": "string", "description": "The ID of the module version this action is using." }, "module_version_number": { "type": "integer", "description": "The version number of the module this action is using." }, "supported_triggers": { "type": "array", "description": "The triggers that this action supports.", "items": { "$ref": "#/components/schemas/ActionTrigger", "x-release-lifecycle": "GA" } } } }