openapi-processor / openapi-processor-core

moved into openapi-processor-base
Apache License 2.0
7 stars 5 forks source link

schema with `allOf` and `properties` on the same level #86

Closed hauner closed 2 years ago

hauner commented 2 years ago

the processor ignores the properties of a schema that's using allOf on the same level:

  schema:
    type: object
    allOf:
      - type: object
        properties:
          prop1:
            type: string
    properties:
      prop2:
        type: string

from: https://github.com/openapi-processor/openapi-processor-maven/issues/2