View | Details | Raw Unified | Return to bug 23336
Collapse All | Expand All

(-)a/api/v1/swagger/definitions/checkout_availability.yaml (+18 lines)
Line 0 Link Here
1
---
2
type: object
3
properties:
4
  blockers:
5
    type: object
6
    description: blocking issues
7
  confirms:
8
    type: object
9
    description: issues requireing confirmation
10
  warnings:
11
    type: object
12
    description: informational issues
13
  confirmation_token:
14
    type:
15
      - string
16
      - "null"
17
    description: token for confirmation
18
additionalProperties: false
(-)a/api/v1/swagger/paths/checkouts.yaml (-1 / +1 lines)
Lines 350-356 Link Here
350
      "200":
350
      "200":
351
        description: Availability
351
        description: Availability
352
        schema:
352
        schema:
353
          type: "object"
353
          $ref: "../swagger.yaml#/definitions/checkout_availability"
354
      "403":
354
      "403":
355
        description: Access forbidden
355
        description: Access forbidden
356
        schema:
356
        schema:
(-)a/api/v1/swagger/swagger.yaml (-1 / +2 lines)
Lines 26-31 definitions: Link Here
26
    $ref: ./definitions/checkout.yaml
26
    $ref: ./definitions/checkout.yaml
27
  checkouts:
27
  checkouts:
28
    $ref: ./definitions/checkouts.yaml
28
    $ref: ./definitions/checkouts.yaml
29
  checkout_availability:
30
    $ref: ./definitions/checkout_availability.yaml
29
  circ-rule-kind:
31
  circ-rule-kind:
30
    $ref: ./definitions/circ-rule-kind.yaml
32
    $ref: ./definitions/circ-rule-kind.yaml
31
  city:
33
  city:
32
- 

Return to bug 23336