@@ -, +, @@ --- api/v1/swagger/definitions/ticket.yaml | 6 ++++++ api/v1/swagger/definitions/ticket_update.yaml | 5 +++++ 2 files changed, 11 insertions(+) --- a/api/v1/swagger/definitions/ticket.yaml +++ a/api/v1/swagger/definitions/ticket.yaml @@ -27,6 +27,12 @@ properties: body: type: string description: Ticket details + status: + type: + - string + - "null" + description: Current status of the ticket + readOnly: true reporter: type: - object --- a/api/v1/swagger/definitions/ticket_update.yaml +++ a/api/v1/swagger/definitions/ticket_update.yaml @@ -31,6 +31,11 @@ properties: public: type: boolean description: Is this update intended to be sent to the patron + status: + type: + - string + - "null" + description: Status of the ticket after this update additionalProperties: true required: - message --