{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActionDescribe", "title": "ActionDescribe", "type": "object", "properties": { "description": { "type": [ "string", "null" ] }, "label": { "type": "string" }, "name": { "type": "string" }, "type": { "type": "string" }, "inputs": { "type": "array", "items": { "$ref": "#/components/schemas/ActionParameter" } }, "outputs": { "type": "array", "items": { "$ref": "#/components/schemas/ActionParameter" } } } }