{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HogFlowMinimal", "title": "HogFlowMinimal", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "name": { "type": "string", "readOnly": true, "nullable": true }, "description": { "type": "string", "readOnly": true }, "version": { "type": "integer", "readOnly": true }, "status": { "allOf": [ { "$ref": "#/components/schemas/HogFlowStatusEnum" } ], "readOnly": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "created_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true }, "trigger": { "readOnly": true }, "trigger_masking": { "readOnly": true, "nullable": true }, "conversion": { "readOnly": true, "nullable": true }, "exit_condition": { "allOf": [ { "$ref": "#/components/schemas/ExitConditionEnum" } ], "readOnly": true }, "edges": { "readOnly": true }, "actions": { "readOnly": true }, "abort_action": { "type": "string", "readOnly": true, "nullable": true }, "variables": { "readOnly": true, "nullable": true }, "billable_action_types": { "readOnly": true, "nullable": true } }, "required": [ "abort_action", "actions", "billable_action_types", "conversion", "created_at", "created_by", "description", "edges", "exit_condition", "id", "name", "status", "trigger", "trigger_masking", "updated_at", "variables", "version" ] }