Skip to content

[SonataFlow] Dev UI does not render object input #3097

@fantonangeli

Description

@fantonangeli

In the data input schema, when we define an input parameter of type object the Dev UI does not render it correctly

  {
    "$id": "classpath:/schemas/create-ocp-project-schema.json",
    "title": "Workflow input data",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "properties": {
      "owner": {
        "title": "owner",
        "description": "OCP project to create",
        "type": "string"
      },
      "repo": {
        "title": "repo",
        "description": "OCP project to create",
        "type": "string"
      },
      "baseBranch": {
        "title": "baseBranch",
        "description": "OCP project to create",
        "type": "string"
      },
      "targetBranch": {
        "title": "targetBranch",
        "description": "OCP project to create",
        "type": "string"
      },
      "obj": {
        "title": "obj",
        "description": "test",
        "type": "object"
      }
    },
    "required": [
      "owner",
      "repo",
      "baseBranch",
      "targetBranch"

    ]
  }

but in the dev UI I am not able to fill it

Image

Metadata

Metadata

Assignees

Projects

Status

📋 Backlog

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions