Automated commit by github action: 4951787144

This commit is contained in:
GitHub Action Bot
2023-05-11 19:31:47 +00:00
parent c20e07ea6a
commit cc74f79666
3 changed files with 7 additions and 9 deletions

View File

@@ -56,13 +56,11 @@ get:
content: content:
application/json: application/json:
schema: schema:
type: array
items:
oneOf: oneOf:
- type: array - $ref: '../schemas/SlimAccount.yaml'
items: - $ref: '../schemas/FullAccount.yaml'
$ref: '../schemas/SlimAccount.yaml'
- type: array
items:
$ref: '../schemas/FullAccount.yaml'
examples: examples:
SlimAccounts: SlimAccounts:
description: List of slim accounts that would result with *detailLevel = SLIM* description: List of slim accounts that would result with *detailLevel = SLIM*

View File

@@ -1,6 +1,6 @@
# The Full version of the Account DTO which contains data stored on the DB objects # The Full version of the Account DTO which contains data stored on the DB objects
# other than just the Account object # other than just the Account object
#type: object type: object
title: Full Account title: Full Account
allOf: allOf:
- $ref: './SlimAccount.yaml' - $ref: './SlimAccount.yaml'

View File

@@ -1,5 +1,5 @@
# The Slim version of the Account DTO containing only data from the Account object # The Slim version of the Account DTO containing only data from the Account object
#type: object type: object
title: Slim Account title: Slim Account
allOf: allOf:
- $ref: './BaseCommonDto.yaml' - $ref: './BaseCommonDto.yaml'