Skip to content

Commit

Permalink
Regen sample
Browse files Browse the repository at this point in the history
  • Loading branch information
tjprescott committed Nov 1, 2023
1 parent 2c7ba30 commit bdc2c14
Showing 1 changed file with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ components:
id:
type: string
readOnly: true
secret:
type: string
name:
type: string
test:
Expand All @@ -112,7 +114,7 @@ components:
relatives:
type: array
items:
$ref: '#/components/schemas/PersonRelative'
$ref: '#/components/schemas/PersonRelativeReadOrCreateOrUpdateOrDeleteOrQueryItem'
Person:
type: object
required:
Expand Down Expand Up @@ -174,6 +176,31 @@ components:
type: array
items:
$ref: '#/components/schemas/PersonRelativeCreateOrUpdateItem'
PersonReadOrCreateOrUpdateOrDeleteOrQueryItem:
type: object
required:
- id
- secret
- name
- test
- other
- relatives
properties:
id:
type: string
readOnly: true
secret:
type: string
name:
type: string
test:
type: string
other:
type: string
relatives:
type: array
items:
$ref: '#/components/schemas/PersonRelativeReadOrCreateOrUpdateOrDeleteOrQueryItem'
PersonRelative:
type: object
required:
Expand Down Expand Up @@ -204,6 +231,16 @@ components:
$ref: '#/components/schemas/PersonCreateOrUpdateItem'
relationship:
type: string
PersonRelativeReadOrCreateOrUpdateOrDeleteOrQueryItem:
type: object
required:
- person
- relationship
properties:
person:
$ref: '#/components/schemas/PersonReadOrCreateOrUpdateOrDeleteOrQueryItem'
relationship:
type: string
PersonRelativeUpdateItem:
type: object
required:
Expand Down

0 comments on commit bdc2c14

Please sign in to comment.