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

(-)a/api/v1/swagger/definitions/item.yaml (-6 / +6 lines)
Lines 65-77 properties: Link Here
65
    format: date-time
65
    format: date-time
66
    description: The date the item barcode was last scanned
66
    description: The date the item barcode was last scanned
67
  not_for_loan_status:
67
  not_for_loan_status:
68
    type: integer
68
    type: boolean
69
    description: Authorized value defining why this item is not for loan
69
    description: Authorized value defining why this item is not for loan
70
  effective_not_for_loan_status:
70
  effective_not_for_loan_status:
71
    type: integer
71
    type: integer
72
    description: Authorized value defining why this item is not for not_for_loan_status
72
    description: Authorized value defining why this item is not for not_for_loan_status
73
  damaged_status:
73
  damaged_status:
74
    type: integer
74
    type: boolean
75
    description: Authorized value defining this item as damaged
75
    description: Authorized value defining this item as damaged
76
  damaged_date:
76
  damaged_date:
77
    type:
77
    type:
Lines 79-85 properties: Link Here
79
      - "null"
79
      - "null"
80
    description: The date and time an item was last marked as damaged, NULL if not damaged
80
    description: The date and time an item was last marked as damaged, NULL if not damaged
81
  lost_status:
81
  lost_status:
82
    type: integer
82
    type: boolean
83
    description: Authorized value defining this item as lost
83
    description: Authorized value defining this item as lost
84
  lost_date:
84
  lost_date:
85
    type:
85
    type:
Lines 88-94 properties: Link Here
88
    format: date-time
88
    format: date-time
89
    description: The date and time an item was last marked as lost, NULL if not lost
89
    description: The date and time an item was last marked as lost, NULL if not lost
90
  withdrawn:
90
  withdrawn:
91
    type: integer
91
    type: boolean
92
    description: Authorized value defining this item as withdrawn
92
    description: Authorized value defining this item as withdrawn
93
  withdrawn_date:
93
  withdrawn_date:
94
    type:
94
    type:
Lines 130-136 properties: Link Here
130
    description: Number of times this item has been placed on hold/reserved
130
    description: Number of times this item has been placed on hold/reserved
131
  restricted_status:
131
  restricted_status:
132
    type:
132
    type:
133
      - integer
133
      - boolean
134
      - "null"
134
      - "null"
135
    description: Authorized value defining use restrictions for this item
135
    description: Authorized value defining use restrictions for this item
136
  public_notes:
136
  public_notes:
Lines 194-200 properties: Link Here
194
    description: Materials specified
194
    description: Materials specified
195
  shelving_control_number:
195
  shelving_control_number:
196
    type:
196
    type:
197
      - number
197
      - boolean
198
      - "null"
198
      - "null"
199
    description: Shelving control number
199
    description: Shelving control number
200
  uri:
200
  uri:
(-)a/api/v1/swagger/definitions/patron.yaml (-1 / +1 lines)
Lines 320-326 properties: Link Here
320
    type: integer
320
    type: integer
321
    description: patron's privacy settings related to their checkout history
321
    description: patron's privacy settings related to their checkout history
322
  privacy_guarantor_checkouts:
322
  privacy_guarantor_checkouts:
323
    type: integer
323
    type: boolean
324
    description: controls if relatives can see this patron's checkouts
324
    description: controls if relatives can see this patron's checkouts
325
  privacy_guarantor_fines:
325
  privacy_guarantor_fines:
326
    type: boolean
326
    type: boolean
(-)a/api/v1/swagger/definitions/patron_category.yaml (-2 / +1 lines)
Lines 32-38 properties: Link Here
32
    description: Age limit for the patron
32
    description: Age limit for the patron
33
  lower_age_limit:
33
  lower_age_limit:
34
    type:
34
    type:
35
      - number
35
      - boolean
36
      - "null"
36
      - "null"
37
    description: The minimum age required for the patron category
37
    description: The minimum age required for the patron category
38
  enrolment_fee:
38
  enrolment_fee:
39
- 

Return to bug 39835