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:
application/json:
schema:
oneOf:
- type: array
items:
$ref: '../schemas/SlimAccount.yaml'
- type: array
items:
$ref: '../schemas/FullAccount.yaml'
type: array
items:
oneOf:
- $ref: '../schemas/SlimAccount.yaml'
- $ref: '../schemas/FullAccount.yaml'
examples:
SlimAccounts:
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
# other than just the Account object
#type: object
type: object
title: Full Account
allOf:
- $ref: './SlimAccount.yaml'

View File

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