Tomas Cohen Arazi
d383b49987
This patch adds the OpenAPI spec for the following paths: - /patrons/{patron_id}/account It also adds object definitions for: - balance - account line Account line is to be used on both /account/lines (when implemented) and for embeding the outstanding lines in the balance endpoint (/patrons/{patron_id}/account). Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
35 lines
947 B
JSON
35 lines
947 B
JSON
{
|
|
"/oauth/token": {
|
|
"$ref": "paths/oauth.json#/~1oauth~1token"
|
|
},
|
|
"/acquisitions/vendors": {
|
|
"$ref": "paths/acquisitions_vendors.json#/~1acquisitions~1vendors"
|
|
},
|
|
"/acquisitions/vendors/{vendor_id}": {
|
|
"$ref": "paths/acquisitions_vendors.json#/~1acquisitions~1vendors~1{vendor_id}"
|
|
},
|
|
"/cities": {
|
|
"$ref": "paths/cities.json#/~1cities"
|
|
},
|
|
"/cities/{city_id}": {
|
|
"$ref": "paths/cities.json#/~1cities~1{city_id}"
|
|
},
|
|
"/holds": {
|
|
"$ref": "paths/holds.json#/~1holds"
|
|
},
|
|
"/holds/{reserve_id}": {
|
|
"$ref": "paths/holds.json#/~1holds~1{reserve_id}"
|
|
},
|
|
"/patrons": {
|
|
"$ref": "paths/patrons.json#/~1patrons"
|
|
},
|
|
"/patrons/{patron_id}": {
|
|
"$ref": "paths/patrons.json#/~1patrons~1{patron_id}"
|
|
},
|
|
"/patrons/{patron_id}/account": {
|
|
"$ref": "paths/patrons_account.json#/~1patrons~1{patron_id}~1account"
|
|
},
|
|
"/illrequests": {
|
|
"$ref": "paths/illrequests.json#/~1illrequests"
|
|
}
|
|
}
|