|
Lines 8-13
Link Here
|
| 8 |
], |
8 |
], |
| 9 |
"summary": "List libraries", |
9 |
"summary": "List libraries", |
| 10 |
"parameters": [ |
10 |
"parameters": [ |
|
|
11 |
{ |
| 12 |
"name": "name", |
| 13 |
"in": "query", |
| 14 |
"description": "Case insensitive 'starts-with' search on name", |
| 15 |
"required": false, |
| 16 |
"type": "string" |
| 17 |
}, |
| 18 |
{ |
| 19 |
"name": "address1", |
| 20 |
"in": "query", |
| 21 |
"description": "Case insensitive 'starts-with' search on address1", |
| 22 |
"required": false, |
| 23 |
"type": "string" |
| 24 |
}, |
| 25 |
{ |
| 26 |
"name": "address2", |
| 27 |
"in": "query", |
| 28 |
"description": "Case insensitive 'starts-with' search on address2", |
| 29 |
"required": false, |
| 30 |
"type": "string" |
| 31 |
}, |
| 32 |
{ |
| 33 |
"name": "address3", |
| 34 |
"in": "query", |
| 35 |
"description": "Case insensitive 'starts-with' search on address3", |
| 36 |
"required": false, |
| 37 |
"type": "string" |
| 38 |
}, |
| 39 |
{ |
| 40 |
"name": "postal_code", |
| 41 |
"in": "query", |
| 42 |
"description": "Case insensitive 'starts-with' search on postal code", |
| 43 |
"required": false, |
| 44 |
"type": "string" |
| 45 |
}, |
| 46 |
{ |
| 47 |
"name": "city", |
| 48 |
"in": "query", |
| 49 |
"description": "Case insensitive 'starts-with' search on city", |
| 50 |
"required": false, |
| 51 |
"type": "string" |
| 52 |
}, |
| 53 |
{ |
| 54 |
"name": "state", |
| 55 |
"in": "query", |
| 56 |
"description": "Case insensitive 'starts-with' search on state", |
| 57 |
"required": false, |
| 58 |
"type": "string" |
| 59 |
}, |
| 60 |
{ |
| 61 |
"name": "country", |
| 62 |
"in": "query", |
| 63 |
"description": "Case insensitive 'starts_with' search on country", |
| 64 |
"required": false, |
| 65 |
"type": "string" |
| 66 |
}, |
| 67 |
{ |
| 68 |
"name": "phone", |
| 69 |
"in": "query", |
| 70 |
"description": "Case insensitive 'starts_with' search on phone number", |
| 71 |
"required": false, |
| 72 |
"type": "string" |
| 73 |
}, |
| 74 |
{ |
| 75 |
"name": "fax", |
| 76 |
"in": "query", |
| 77 |
"description": "Case insensitive 'starts_with' search on fax number", |
| 78 |
"required": false, |
| 79 |
"type": "string" |
| 80 |
}, |
| 81 |
{ |
| 82 |
"name": "email", |
| 83 |
"in": "query", |
| 84 |
"description": "Case insensitive 'starts_with' search on email address", |
| 85 |
"required": false, |
| 86 |
"type": "string" |
| 87 |
}, |
| 88 |
{ |
| 89 |
"name": "reply_to_email", |
| 90 |
"in": "query", |
| 91 |
"description": "Case insensitive 'starts_with' search on Reply-To email address", |
| 92 |
"required": false, |
| 93 |
"type": "string" |
| 94 |
}, |
| 95 |
{ |
| 96 |
"name": "return_path_email", |
| 97 |
"in": "query", |
| 98 |
"description": "Case insensitive 'starts_with' search on Return-Path email address", |
| 99 |
"required": false, |
| 100 |
"type": "string" |
| 101 |
}, |
| 102 |
{ |
| 103 |
"name": "url", |
| 104 |
"in": "query", |
| 105 |
"description": "Case insensitive 'starts_with' search on website URL", |
| 106 |
"required": false, |
| 107 |
"type": "string" |
| 108 |
}, |
| 109 |
{ |
| 110 |
"name": "ip", |
| 111 |
"in": "query", |
| 112 |
"description": "Case insensitive 'starts_with' search on IP address", |
| 113 |
"required": false, |
| 114 |
"type": "string" |
| 115 |
}, |
| 116 |
{ |
| 117 |
"name": "notes", |
| 118 |
"in": "query", |
| 119 |
"description": "Case insensitive 'starts_with' search on notes", |
| 120 |
"required": false, |
| 121 |
"type": "string" |
| 122 |
}, |
| 123 |
{ |
| 124 |
"name": "opac_info", |
| 125 |
"in": "query", |
| 126 |
"description": "Case insensitive 'starts-with' search on OPAC info", |
| 127 |
"required": false, |
| 128 |
"type": "string" |
| 129 |
}, |
| 130 |
{ |
| 131 |
"$ref": "../parameters.json#/match" |
| 132 |
}, |
| 133 |
{ |
| 134 |
"$ref": "../parameters.json#/order_by" |
| 135 |
}, |
| 11 |
{ |
136 |
{ |
| 12 |
"$ref": "../parameters.json#/page" |
137 |
"$ref": "../parameters.json#/page" |
| 13 |
}, |
138 |
}, |
|
Lines 316-440
Link Here
|
| 316 |
], |
441 |
], |
| 317 |
"summary": "List libraries", |
442 |
"summary": "List libraries", |
| 318 |
"parameters": [ |
443 |
"parameters": [ |
| 319 |
{ |
|
|
| 320 |
"name": "name", |
| 321 |
"in": "query", |
| 322 |
"description": "Case insensitive 'starts-with' search on name", |
| 323 |
"required": false, |
| 324 |
"type": "string" |
| 325 |
}, |
| 326 |
{ |
| 327 |
"name": "address1", |
| 328 |
"in": "query", |
| 329 |
"description": "Case insensitive 'starts-with' search on address1", |
| 330 |
"required": false, |
| 331 |
"type": "string" |
| 332 |
}, |
| 333 |
{ |
| 334 |
"name": "address2", |
| 335 |
"in": "query", |
| 336 |
"description": "Case insensitive 'starts-with' search on address2", |
| 337 |
"required": false, |
| 338 |
"type": "string" |
| 339 |
}, |
| 340 |
{ |
| 341 |
"name": "address3", |
| 342 |
"in": "query", |
| 343 |
"description": "Case insensitive 'starts-with' search on address3", |
| 344 |
"required": false, |
| 345 |
"type": "string" |
| 346 |
}, |
| 347 |
{ |
| 348 |
"name": "postal_code", |
| 349 |
"in": "query", |
| 350 |
"description": "Case insensitive 'starts-with' search on postal code", |
| 351 |
"required": false, |
| 352 |
"type": "string" |
| 353 |
}, |
| 354 |
{ |
| 355 |
"name": "city", |
| 356 |
"in": "query", |
| 357 |
"description": "Case insensitive 'starts-with' search on city", |
| 358 |
"required": false, |
| 359 |
"type": "string" |
| 360 |
}, |
| 361 |
{ |
| 362 |
"name": "state", |
| 363 |
"in": "query", |
| 364 |
"description": "Case insensitive 'starts-with' search on state", |
| 365 |
"required": false, |
| 366 |
"type": "string" |
| 367 |
}, |
| 368 |
{ |
| 369 |
"name": "country", |
| 370 |
"in": "query", |
| 371 |
"description": "Case insensitive 'starts_with' search on country", |
| 372 |
"required": false, |
| 373 |
"type": "string" |
| 374 |
}, |
| 375 |
{ |
| 376 |
"name": "phone", |
| 377 |
"in": "query", |
| 378 |
"description": "Case insensitive 'starts_with' search on phone number", |
| 379 |
"required": false, |
| 380 |
"type": "string" |
| 381 |
}, |
| 382 |
{ |
| 383 |
"name": "fax", |
| 384 |
"in": "query", |
| 385 |
"description": "Case insensitive 'starts_with' search on fax number", |
| 386 |
"required": false, |
| 387 |
"type": "string" |
| 388 |
}, |
| 389 |
{ |
| 390 |
"name": "email", |
| 391 |
"in": "query", |
| 392 |
"description": "Case insensitive 'starts_with' search on email address", |
| 393 |
"required": false, |
| 394 |
"type": "string" |
| 395 |
}, |
| 396 |
{ |
| 397 |
"name": "reply_to_email", |
| 398 |
"in": "query", |
| 399 |
"description": "Case insensitive 'starts_with' search on Reply-To email address", |
| 400 |
"required": false, |
| 401 |
"type": "string" |
| 402 |
}, |
| 403 |
{ |
| 404 |
"name": "return_path_email", |
| 405 |
"in": "query", |
| 406 |
"description": "Case insensitive 'starts_with' search on Return-Path email address", |
| 407 |
"required": false, |
| 408 |
"type": "string" |
| 409 |
}, |
| 410 |
{ |
| 411 |
"name": "url", |
| 412 |
"in": "query", |
| 413 |
"description": "Case insensitive 'starts_with' search on website URL", |
| 414 |
"required": false, |
| 415 |
"type": "string" |
| 416 |
}, |
| 417 |
{ |
| 418 |
"name": "ip", |
| 419 |
"in": "query", |
| 420 |
"description": "Case insensitive 'starts_with' search on IP address", |
| 421 |
"required": false, |
| 422 |
"type": "string" |
| 423 |
}, |
| 424 |
{ |
| 425 |
"name": "notes", |
| 426 |
"in": "query", |
| 427 |
"description": "Case insensitive 'starts_with' search on notes", |
| 428 |
"required": false, |
| 429 |
"type": "string" |
| 430 |
}, |
| 431 |
{ |
| 432 |
"name": "opac_info", |
| 433 |
"in": "query", |
| 434 |
"description": "Case insensitive 'starts-with' search on OPAC info", |
| 435 |
"required": false, |
| 436 |
"type": "string" |
| 437 |
}, |
| 438 |
{ |
444 |
{ |
| 439 |
"$ref": "../parameters.json#/match" |
445 |
"$ref": "../parameters.json#/match" |
| 440 |
}, |
446 |
}, |
| 441 |
- |
|
|