@@ -, +, @@ libraries endpoints --- api/v1/swagger/definitions/library.yaml | 10 ++++++++++ api/v1/swagger/paths/libraries.yaml | 4 ++++ 2 files changed, 14 insertions(+) --- a/api/v1/swagger/definitions/library.yaml +++ a/api/v1/swagger/definitions/library.yaml @@ -120,6 +120,16 @@ properties: - array - "null" description: The open and close times for a library on any given day + cash_registers: + type: + - array + - "null" + description: The library's defined cash registers (x-koha-embed) + desks: + type: + - array + - "null" + description: The library's defined desks (x-koha-embed) additionalProperties: false required: - library_id --- a/api/v1/swagger/paths/libraries.yaml +++ a/api/v1/swagger/paths/libraries.yaml @@ -102,6 +102,8 @@ items: type: string enum: + - cash_registers + - desks - smtp_server - library_hours collectionFormat: csv @@ -195,6 +197,8 @@ items: type: string enum: + - cash_registers + - desks - smtp_server - library_hours collectionFormat: csv --