Skip to content

No body generated when root is a list #9

@Leemur89

Description

@Leemur89

Hello,
I have an endpoint where the root element is a list, and the generator is always giving me an empty body without possibility to edit it via the data mapping (or maybe there is one that I haven't found?)

{
  "requestBody": {
    "content": {
      "application/json": {
        "schema": {
          "example": [
            {
              "attribute": "City",
              "values": [
                "New York",
                "London"
              ]
            },
            {
              "attribute": "Type",
              "values": [
                "Restaurant",
                "Hotel"
              ]
            }
          ],
          "items": {
            "description": "An individual instruction on how to manipulate the object.",
            "properties": {
              "attribute": {
                "description": "Identification of a target attribute",
                "example": "Attitudes",
                "type": "string"
              },
              "values": {
                "description": "An array of values to be used with given attribute",
                "example": [
                  "Friendly",
                  "Outgoing"
                ],
                "items": {},
                "type": "array"
              }
            },
            "required": [
              "attribute"
            ]
          },
          "type": "array"
        }
      }
    }
  }
}

The library is sending an empty body, and there is nothing I can do with data mapping as PropertyValueConstraint requires a property_name, which does not exist for lists.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions