{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormRouterRule", "title": "FormRouterRule", "type": "object", "additionalProperties": false, "required": [ "id", "condition" ], "properties": { "id": { "type": "string", "format": "forms-custom-identifier" }, "alias": { "type": "string", "minLength": 1, "maxLength": 150 }, "condition": {}, "next_node": { "$ref": "#/components/schemas/FormNodePointer" } } }