github.com/easysoft/zendata@v0.0.0-20240513203326-705bd5a7fd67/demo/mock/input/my-other-openapi.json (about)

     1  {
     2    "openapi": "3.0.2",
     3    "info": {
     4      "title": "My other API",
     5      "version": "0.1.0"
     6    },
     7    "components": {
     8      "schemas": {
     9        "DefaultObject": {
    10          "type": "object",
    11          "properties": {
    12            "foo": {
    13              "type": "string"
    14            },
    15            "bar": {
    16              "type": "integer"
    17            }
    18          }
    19        }
    20      },
    21      "responses": {
    22        "DefaultResponse": {
    23          "description": "",
    24          "content": {
    25            "application/json": {
    26              "schema": {
    27                "$ref": "#/components/schemas/DefaultObject"
    28              }
    29            }
    30          }
    31        }
    32      }
    33    }
    34  }