Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions spec/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ paths:
required: true
name: barcode
schema:
type: integer
type: string
responses:
204:
description: success
Expand Down Expand Up @@ -503,7 +503,7 @@ paths:
parameters:
- in: path
required: true
type: integer
type: string
name: barcode
description: barcode associated with user
responses:
Expand Down Expand Up @@ -628,7 +628,7 @@ paths:
schema:
type: object
properties:
barcode:
id:
type: string
type:
type: string
Expand Down Expand Up @@ -658,7 +658,7 @@ paths:
- in: path
name: id
required: true
type: integer
type: string
responses:
200:
description: details of barcode
Expand All @@ -678,7 +678,7 @@ paths:
- in: path
name: id
required: true
type: integer
type: string
responses:
204:
description: barcode deleted
Expand All @@ -694,7 +694,7 @@ paths:
- in: path
name: id
required: true
type: integer
type: string
- in: body
name: barcode
required: false
Expand Down Expand Up @@ -1012,15 +1012,12 @@ definitions:
type: object
required:
- id
- barcode
- type
- linked
- created_at
- updated_at
properties:
id:
type: integer
barcode:
type: string
type:
type: string
Expand Down