Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
419 views
in Technique[技术] by (71.8m points)

json - OpenAPI 3.0 ref for array

I have recently delved into the OpenAPI specifications and have been making use of redoc-cli, however, I have come across a small problem.

I have the following:

      "OrderResponse": {
        "allOf": [
          "$ref": "#/components/schemas/QuoteOrderResponse",
          {
            "type": "object",
            "properties": {
              "trips": {
                "type": "array",
                "$ref": "#/components/schemas/QuoteOrderResponse"
              }
            }
          }
        ]
      },

However, the resulting output is in the form of an object. trips result

Hope there are some gurus here that are able to help me to see what is wrong with this. Cheers.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

update on this issue, I have found the error, it was a simple mistake which I overlooked.

Basically had to do:

        "allOf": [
          "$ref": "#/components/schemas/QuoteOrderResponse",
          {
            "type": "object",
            "properties": {
              "trips": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/QuoteOrderResponse"
                }
              }
            }
          }
        ]
      }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...