packages feed

compaREST-0.1.0.0: test/golden/common/property-required/b.yaml

openapi: "3.0.0"
info:
  version: 1.0.0
  title: Test
servers:
  - url: http://localhost/
paths:
  /test:
    post:
      requestBody:
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/Test"
      responses:
        '200':
          description: test
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Test"
components:
  schemas:
    Test:
      required:
        - property1
        - property2
      properties:
        property1:
          type: string
        property2:
          type: number
      additionalProperties: false