Skip to content

Commit

Permalink
Add missing fixture (#1430)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerManoMann authored Mar 17, 2023
1 parent e37e42e commit e1b1754
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tests/Fixtures/Scratch/Docblocks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
openapi: 3.0.0
info:
title: API
version: '1.0'
paths:
/api/endpoint:
get:
responses:
'200':
description: 'successful operation'
components:
schemas:
DocblockSchema:
properties:
name:
description: 'The name'
type: string
type: object
DocblockSchemaChild:
type: object
allOf:
-
$ref: '#/components/schemas/DocblockSchema'
-
properties:
id:
description: 'The id'
type: integer

0 comments on commit e1b1754

Please sign in to comment.