{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InternalServiceActionData", "title": "InternalServiceActionData", "type": "object", "properties": { "service_configuration": { "nullable": true, "oneOf": [ { "$ref": "#/components/schemas/InternalScheduledReportData" }, { "$ref": "#/components/schemas/InternalTrackEventData" }, { "$ref": "#/components/schemas/InternalScheduledReportBuilderReportData" }, { "$ref": "#/components/schemas/InternalUnknownServiceData" } ] }, "status": { "description": "Flow action status.", "type": "string", "example": "draft", "default": "draft", "enum": [ "disabled", "draft", "live", "manual" ] } } }