tests/fixtures/api31.json 671 B raw
1
{
2
  "openapi": "3.1.0",
3
  "info": { "title": "Things", "version": "0.1" },
4
  "servers": [{ "url": "https://things.example.com" }],
5
  "paths": {
6
    "/things": {
7
      "post": {
8
        "operationId": "makeThing",
9
        "requestBody": {
10
          "content": {
11
            "application/json": {
12
              "schema": {
13
                "type": "object",
14
                "properties": {
15
                  "label": { "type": ["string", "null"], "examples": ["widget"] },
16
                  "count": { "type": "integer" }
17
                }
18
              }
19
            }
20
          }
21
        },
22
        "responses": { "201": { "description": "created" } }
23
      }
24
    }
25
  }
26
}