1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# Test case for allOf referencing a schema with anyOf
# This tests the anyOf branch in _parse_all_of_item
openapi: 3.0.0
info:
title: Test API
version: 1.0.0
paths:
/items:
post:
summary: Create an item
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ItemPostRequest'
responses:
'200':
description: Success
components:
schemas:
TextItem:
type: object
required:
- itemType
- text
properties:
itemType:
type: string
enum:
- text
text:
type: string
NumberItem:
type: object
required:
- itemType
- value
properties:
itemType:
type: string
enum:
- number
value:
type: integer
Item:
anyOf:
- $ref: '#/components/schemas/TextItem'
- $ref: '#/components/schemas/NumberItem'
ItemPostRequest:
allOf:
- $ref: '#/components/schemas/Item'
- type: object
required:
- itemId
properties:
itemId:
type: string
|