With few exceptions (see Special Namespaces) each namespace in the API is related to a single framework class.
WCO entities are serailized to JSON as objects. When beign sent from the API to the consumer these objects have, at a minimum, the following three values.
The name of the WCOF Entity's class as a string
The unique object id of this instance of the class
A meaningful string name for this instance. Note that even those entities that don't have a defined name property will have a value in this field. That value will simply be a string version of the lisp written value of the entity and is subject to change.
Entities are serialized using a minimal set of properties or a more extensive set of properties depending on the request and the level of nesting. Since entities may have other entities as their properties it is more efficient to limit the number of properties the nested entites contain.
Some classes include additional fields in their minimal serialization. These, along with the more expanded serializations are documented for each entity in the API Reference that is available on each WebChecheckout instance.
When sending an entity back to the API the consumer may exclude the name property. Historically when the API expected a specific type of entity the consumer could just pass in the oid of the entity in place of the object. This practice is deprecated and should not be used in any new interfaces.
To get the standard serialization of an object you call get in the appropriate namespace (See Namespace) and specify the oid of the object you want to retrieve.
POST /rest/person/get HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "oid": 1 } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/get", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "_class": "person", "oid": 1, "name": "Administrator", "userid": "admin", "barcode": "12345" }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
You may also specify specific properties to be included in the serialization as a property template. Doing so overrides the default serializations with the exception of the three properties mentioned above (_class, oid, name). For details on property templates see the Property Templates section below.
POST /rest/person/get HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "oid": 1, "properties": [ "street", "street2", "city", "state", "telephone", "email" ] } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/get", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "_class": "person", "oid": 1, "name": "Administrator", "email": null, "telephone": null, "state": null, "city": null, "street2": null, "street": null }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
To allow for the retrieval of multiple entities without requiring multiple requests, you may also supply an array of oids, with or without properties.
POST /rest/person/get HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "oid": [ 2575, 2576, 2577 ] } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/get", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": [ { "_class": "person", "oid": 2575, "name": "Laura Campbell", "userid": "LCamp", "barcode": null }, { "_class": "person", "oid": 2576, "name": "Leondard Hofstadter", "userid": "Leonter", "barcode": null }, { "_class": "person", "oid": 2577, "name": "Max Skinner", "userid": "MaxS", "barcode": null } ], "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Providing an invalid oid will result in an error
Not all entities can be created directly, many are the result of other operations in the API. Where they may be directly created, the namespace will contain a "new" command
For example, the following details the creation of a new resource type.
POST /rest/resourceType/new HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "name": "Brand New Type 755142241", "resourceTypeId": "755142241", "organization": { "_class": "organization", "oid": 1 } } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/resourceType/new", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "_class": "resourceType", "oid": 846396, "name": "Brand New Type 755142241", "value": null, "deleted": false, "parent": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "pirP": true, "authorized": false, "path": "Brand New Type 755142241", "origin": "LOCAL", "description": null }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Entities are edited by posting new property values to the update command of the namespace. Update accepts the oid of the object being updated, and the set of new property values.
POST /rest/resource/update HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "oid": 4262, "values": { "description": "This is my description" } } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/resource/update", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "_class": "resource", "oid": 4262, "name": "Strawberries", "circulating": true, "statusString": "Available", "barcode": "CCv122" }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
As with retrieving, the oid argument for update may be an array of OIDs. The API will apply the edit to each of the entities. The entities must be of the same type.
Deleting of entities is generally forbidden in the API. When allowed, the namespace will contain a delete command.
Details on all properties exported for a particular entity type can be retrieved using the namespace properties call
For each property the results include:
the label to be used for display purposes to name the property
The name of the property
the framework type of the property
If true, the property expects and returns an array of the above type
A hint for the proper rendering of the value (see Hints).
A boolean telling you if queries may be sorted using this property.
Is this property intended to be a user meaningful result in a search. This field is advisory only.
When defined, information about the constrained values the property will accept. For details see constraints in Special Namespaces
The constraint value, listing all posible values, is deprecated and will be removed in a future version of the API
A plain-text description of the property
Can this property be read
Authorization required to read the property
Can this property be written to
Authorization required to write a new value to the property
By default, all wcof entity types have three defined properties:
the object oid of the specific entity.
the framework type (class) name of the entity
a property on an object which simply returns the object itself.
The full list of properties for each namespace is listed in the the API Reference that is available on each WebChecheckout instance.
POST /rest/checkoutCenter/properties HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": {} }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/checkoutCenter/properties", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": [ { "label": "_Class", "property": "_class", "name": "_class", "displayHint": "string", "relatedProperties": null, "resultColumn": null, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "The object's class name as a string", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Oid", "property": "oid", "name": "oid", "displayHint": "integer", "relatedProperties": null, "resultColumn": null, "type": "integer", "nullOk": true, "multipleValues": false, "documentation": "The object's unique identifier", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Checkout Center", "property": "identity", "name": "identity", "displayHint": "identity", "relatedProperties": null, "resultColumn": true, "type": "checkoutCenter", "nullOk": true, "multipleValues": false, "documentation": "The object itself", "readable": true, "readAuth": null, "writable": false, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Name", "property": "name", "name": "name", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": false, "multipleValues": false, "documentation": "the unique name for this checkout-center", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Description", "property": "description", "name": "description", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Unique Id", "property": "uniqueId", "name": "uniqueId", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "The default description of the object", "readable": true, "readAuth": null, "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Default Allocation Times", "property": "defaultAllocationTimes", "name": "defaultAllocationTimes", "displayHint": "defaultAllocationTimes", "relatedProperties": null, "resultColumn": true, "type": "defaultAllocationTimes", "nullOk": true, "multipleValues": false, "documentation": "Reader defaults to org's value if self's slot is\n nil. Writer sets the slot because any psheet or other js widget\n displaying a value will show self's effective value. If self's\n slot is already set, this acts as expected -- you see that value\n and change that value. If self's slot is nil, you see the org's\n value, and either (a) the org value is fine and you won't try to\n set a value at the checkout center, (b) the org value is not fine\n and you enter an override at the checkout center level, or (c) the\n org value is fine and you enter the same value anyway. The first\n two work as expected, and in the third, we can either set the slot\n value so it continues to override if the org value changes, OR do\n nothing so that the checkout-center continues to inherit. For now\n we'll only write the value if we're replacing a nil with something\n not already equal to the value inherited from the org level. Some\n day we might want to use a display like for policy values that\n inherit.", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Messaging From Address", "property": "messagingFromAddress", "name": "messagingFromAddress", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "The From: address for email from this checkout-center. If the address entered contains only whitespace, the organization's :messaging-from-address is returned.", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Messaging From Address Slot", "property": "messagingFromAddressSlot", "name": "messagingFromAddressSlot", "displayHint": "string", "relatedProperties": null, "resultColumn": null, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "slot-value of messaging-from-address -- needed by UI", "readable": true, "readAuth": null, "writable": false, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Reply To Address", "property": "replyToAddress", "name": "replyToAddress", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "where to send replies to email", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Reply To Address Slot", "property": "replyToAddressSlot", "name": "replyToAddressSlot", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "slot value of reply-to-address -- needed by UI", "readable": true, "readAuth": null, "writable": false, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Override Allocation Recipient Address", "property": "overrideAllocationRecipientAddress", "name": "overrideAllocationRecipientAddress", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "An override value for all allocation email\n recipients, to allow redirecting outbound messages\n to another system", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Renewal Limit", "property": "renewalLimit", "name": "renewalLimit", "displayHint": "integer", "relatedProperties": null, "resultColumn": true, "type": "integer", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Managing Organization", "property": "organization", "name": "organization", "displayHint": "entity", "relatedProperties": null, "resultColumn": true, "type": "organization", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Metaclass", "property": "metaclass", "name": "metaclass", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": null, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": true, "constraint": { "name": "resourceClass", "type": "orderedSet" } }, { "label": "Default Delivery Type", "property": "defaultDeliveryType", "name": "defaultDeliveryType", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "deliveryType", "type": "orderedSet" } }, { "label": "Default Resource Selector", "property": "defaultResourceSelector", "name": "defaultResourceSelector", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "resourceSelector", "type": "orderedSet" } }, { "label": "Timeline Zoom Factor", "property": "timelineZoomFactor", "name": "timelineZoomFactor", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "integer", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "timelineZoomFactor", "type": "orderedSet" } }, { "label": "Timeline Granularity", "property": "timelineGranularity", "name": "timelineGranularity", "displayHint": "integer", "relatedProperties": null, "resultColumn": true, "type": "integer", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Show Resource Timelines", "property": "showResourceTimelines", "name": "showResourceTimelines", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Building", "property": "building", "name": "building", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Room Number", "property": "room", "name": "room", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Address", "property": "address", "name": "address", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Telephone", "property": "telephone", "name": "telephone", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Default Printer Queue", "property": "printQueue", "name": "printQueue", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Allocation Mode", "property": "allocationMode", "name": "allocationMode", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "allocationMode", "type": "orderedSet" } }, { "label": "Billing Contact", "property": "billingContactName", "name": "billingContactName", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Billing Contact Telephone", "property": "billingContactPhone", "name": "billingContactPhone", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Billing Contact Email", "property": "billingContactEmail", "name": "billingContactEmail", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Email Template Set", "property": "emailTemplateSet", "name": "emailTemplateSet", "displayHint": "entitySelectBox", "relatedProperties": null, "resultColumn": true, "type": "emailTemplateSet", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "emailTemplateSets", "type": "dynamicOrderedSet" } }, { "label": "Print Template Set", "property": "printTemplateSet", "name": "printTemplateSet", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "printTemplateSet", "type": "dynamicOrderedSet" } }, { "label": "Usage Day Rollover", "property": "usageDayRollover", "name": "usageDayRollover", "displayHint": "wallTime", "relatedProperties": null, "resultColumn": null, "type": "wallTime", "nullOk": true, "multipleValues": false, "documentation": "The beginning of a day for usage purposes", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Billing Day Rollover", "property": "billingDayRollover", "name": "billingDayRollover", "displayHint": "wallTime", "relatedProperties": null, "resultColumn": null, "type": "wallTime", "nullOk": true, "multipleValues": false, "documentation": "The beginning of a day for billing purposes. Note that null has special meaning", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Exclude Closed Time From Usage", "property": "usageExcludeClosed", "name": "usageExcludeClosed", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Exclude Closed Time From Fee Calculation", "property": "feesExcludeClosed", "name": "feesExcludeClosed", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Exclude Closed Time From Fine Calculation", "property": "finesExcludeClosed", "name": "finesExcludeClosed", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Copy Set/Strike People on All Notifications", "property": "ccSetStrike", "name": "ccSetStrike", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": "send CC email to set and strike people", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Suppress Patron Emails on Set/Strike Allocations", "property": "suppressSetStrikeEmailToPatron", "name": "suppressSetStrikeEmailToPatron", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": "Suppress email to patron, accompanying people and contact person for allocation emails when the pickup/return options are set and/or strike, and it's relevant to the email.", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal New Reservation Notification", "property": "patronPortalEmailNotification", "name": "patronPortalEmailNotification", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": "send email about patron portal new reservations", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Notification Email Address", "property": "patronPortalNotificationEmailAddress", "name": "patronPortalNotificationEmailAddress", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "address to send emails to, about new patron portal reservations", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Help Link", "property": "patronPortalHelpLink", "name": "patronPortalHelpLink", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": "link to use in place of the default for patron portal help", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Copy Reporting Patron on Help Desk Ticket Notifications", "property": "ccReportingPatron", "name": "ccReportingPatron", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": "Send email to ticket's reporting patron.", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Require Signature On File", "property": "requireSignatureOnFile", "name": "requireSignatureOnFile", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Require Scan To Pickup", "property": "forceBarcodeScanning", "name": "forceBarcodeScanning", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Allow Rrt Pickup", "property": "allowRrtPickup", "name": "allowRrtPickup", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Allow Rrt Autoassignment", "property": "allowRrtAutoassignment", "name": "allowRrtAutoassignment", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Require Scan To Return", "property": "requireScanToReturn", "name": "requireScanToReturn", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Allow Return All", "property": "allowReturnAll", "name": "allowReturnAll", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Enable Receive Allocation", "property": "enableReceiveAllocation", "name": "enableReceiveAllocation", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Form Date And Time Format", "property": "formDateTimeFormat", "name": "formDateTimeFormat", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "dateTimeFormat", "type": "dynamicOrderedSet" } }, { "label": "Agreement Form File Name", "property": "agreementFormFileName", "name": "agreementFormFileName", "displayHint": "string", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Agreement Form Item Sorting", "property": "agreementFormSorting", "name": "agreementFormSorting", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "agreementFormSorting", "type": "orderedSet" } }, { "label": "Agreement Form Item Grouping", "property": "agreementFormGrouping", "name": "agreementFormGrouping", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "agreementFormGrouping", "type": "orderedSet" } }, { "label": "Use Customizable Agreement Form", "property": "customAgreementFormOid", "name": "customAgreementFormOid", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "integer", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "customAgreementForms", "type": "dynamicOrderedSet" } }, { "label": "Timezone", "property": "timezone", "name": "timezone", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": { "name": "timezones", "type": "dynamicOrderedSet" } }, { "label": "Locale", "property": "locale", "name": "locale", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": { "name": "locales", "type": "orderedSet" } }, { "label": "Circulation Requires Authorization", "property": "circulationRequiresAuthorization", "name": "circulationRequiresAuthorization", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": "if t, patron must be an active member of a group whose authset contains the checkout-center (scope of #!circulation-authorization) that the operator is trying to reserve/check-out from on behalf of the patron.", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Access Requires Authorization", "property": "patronAccessRequiresAuthorization", "name": "patronAccessRequiresAuthorization", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": "if t, patron must be an active member of a group whose authset contains the checkout-center (scope of #!patron-portal-access-authorization) that the patron is trying to log into.", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Message", "property": "pirMotd", "name": "pirMotd", "displayHint": "longString", "relatedProperties": null, "resultColumn": true, "type": "string", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Allow Patron Portal Search For Media In Other Centers", "property": "pirMediaCcQuery", "name": "pirMediaCcQuery", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Schedule Repeats In Patron Portal", "property": "repeatsInPir", "name": "repeatsInPir", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Resource Selection Mode", "property": "pirMode", "name": "pirMode", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": false, "constraint": { "name": "pirMode", "type": "dynamicOrderedSet" } }, { "label": "Patron Reservations Require Approval", "property": "pirRequiresApproval", "name": "pirRequiresApproval", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Allow Patrons To Submit Tickets In Patron Portal", "property": "pirReportProblems", "name": "pirReportProblems", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": "Can a patron report a problem in PIR at this checkout-center", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Reservations Require Event Title", "property": "pirRequiresEventTitle", "name": "pirRequiresEventTitle", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": "require an event title in patron portal", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "eventTitleRequired", "type": "orderedSet" } }, { "label": "Restrict Patron Delivery Locations To This Center", "property": "pirRestrictDeliveryLocations", "name": "pirRestrictDeliveryLocations", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Timeout (Minutes)", "property": "pirSessionTimeout", "name": "pirSessionTimeout", "displayHint": "integer", "relatedProperties": null, "resultColumn": true, "type": "integer", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Min Checkout Reserve Time", "property": "minCheckoutReserveTime", "name": "minCheckoutReserveTime", "displayHint": "duration", "relatedProperties": null, "resultColumn": true, "type": "duration", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Max Checkout Reserve Time", "property": "maxCheckoutReserveTime", "name": "maxCheckoutReserveTime", "displayHint": "circulationPeriod", "relatedProperties": null, "resultColumn": true, "type": "circulationPeriod", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Reservation Advance Limit", "property": "reservationAdvanceLimit", "name": "reservationAdvanceLimit", "displayHint": "duration", "relatedProperties": null, "resultColumn": true, "type": "duration", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Patron Portal Reservation Granularity", "property": "pirReservationGranularity", "name": "pirReservationGranularity", "displayHint": "duration", "relatedProperties": null, "resultColumn": true, "type": "duration", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Patron Portal Start Granularity", "property": "pirStartGranularity", "name": "pirStartGranularity", "displayHint": "integer", "relatedProperties": null, "resultColumn": true, "type": "integer", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Set Location In Patron Portal", "property": "setLocationInPatronPortal", "name": "setLocationInPatronPortal", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "setLocationInPatronPortalOptions", "type": "dynamicOrderedSet" } }, { "label": "Patron Portal Show Groups", "property": "patronPortalShowGroups", "name": "patronPortalShowGroups", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Show Credits", "property": "patronPortalShowCredits", "name": "patronPortalShowCredits", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Allow Attachments", "property": "patronPortalAllowAttachments", "name": "patronPortalAllowAttachments", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Patron Portal Allow Notes", "property": "patronPortalAllowNotes", "name": "patronPortalAllowNotes", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Honor External Holds", "property": "honorExternalHolds", "name": "honorExternalHolds", "displayHint": "entityList", "relatedProperties": null, "resultColumn": true, "type": "checkoutCenter", "nullOk": true, "multipleValues": true, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Honor External Fines", "property": "honorExternalFines", "name": "honorExternalFines", "displayHint": "entityList", "relatedProperties": null, "resultColumn": true, "type": "checkoutCenter", "nullOk": true, "multipleValues": true, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Honor External Lates", "property": "honorExternalLates", "name": "honorExternalLates", "displayHint": "entityList", "relatedProperties": null, "resultColumn": true, "type": "checkoutCenter", "nullOk": true, "multipleValues": true, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Enable Rapid Return", "property": "enableRapidReturn", "name": "enableRapidReturn", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Require Credit To Circulate", "property": "requireCreditToCirculate", "name": "requireCreditToCirculate", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Auto Apply Credits", "property": "autoApplyCredits", "name": "autoApplyCredits", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Use Circulation Windows", "property": "usePickupReturnWindows", "name": "usePickupReturnWindows", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Assignment Strategy", "property": "assignmentStrategy", "name": "assignmentStrategy", "displayHint": "selectBox", "relatedProperties": null, "resultColumn": true, "type": "tag", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": { "name": "ccAssignmentStrategies", "type": "orderedSet" } }, { "label": "Limit Circulation Of Resources With Tickets", "property": "limitCirculationOfResourcesWithTickets", "name": "limitCirculationOfResourcesWithTickets", "displayHint": "boolean", "relatedProperties": null, "resultColumn": true, "type": "boolean", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": true, "constraint": null }, { "label": "Calendar", "property": "calendar", "name": "calendar", "displayHint": "entity", "relatedProperties": null, "resultColumn": null, "type": "checkoutCenterCalendar", "nullOk": true, "multipleValues": false, "documentation": "The calendar of this Checkout Center", "readable": true, "readAuth": null, "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Public Schedule", "property": "publicSchedule", "name": "publicSchedule", "displayHint": "publicSchedule", "relatedProperties": null, "resultColumn": null, "type": "publicSchedule", "nullOk": true, "multipleValues": false, "documentation": "The current schedule for this CC structured for display", "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Simultaneity Schedule", "property": "simultaneitySchedule", "name": "simultaneitySchedule", "displayHint": "entity", "relatedProperties": null, "resultColumn": null, "type": "simultaneitySchedule", "nullOk": true, "multipleValues": false, "documentation": null, "readable": true, "readAuth": null, "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null }, { "label": "Default Task Profile", "property": "defaultTaskProfile", "name": "defaultTaskProfile", "displayHint": "entitySelectBox", "relatedProperties": null, "resultColumn": null, "type": "taskProfile", "nullOk": true, "multipleValues": false, "documentation": "", "readable": true, "readAuth": null, "writable": true, "writeAuth": null, "dbSortable": false, "constraint": { "name": "taskProfiles", "type": "dynamicOrderedSet" } }, { "label": "Patron Portal Properties", "property": "patronPortalProperties", "name": "patronPortalProperties", "displayHint": "entityList", "relatedProperties": null, "resultColumn": null, "type": "patronPortalProperty", "nullOk": true, "multipleValues": true, "documentation": null, "readable": true, "readAuth": [ { "type": "defaultAllow" } ], "writable": false, "writeAuth": null, "dbSortable": false, "constraint": null } ], "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Details on the query terms published for a particular entity type can be retrieved using the namespace queryTerms call.
For each query term the results include:the label to be used for display purposes to name the query term
The name of the query term
the framework type of the term
A hint for the proper rendering of the term (see Hints)
When defined, information about the set of constrained values the query term will accept. For details see constraints in Special Namespaces
The constraint value, listing all posible values, is deprecated and will be removed in a future version of the API
A plain-text description of the query term
The full list of query terms for each namespace is listed in the the API Reference that is available on each WebChecheckout instance.
POST /rest/checkoutCenter/queryTerms HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": {} }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/checkoutCenter/queryTerms", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": [ { "name": "Checkout Center", "parameter": "identity", "documentation": "Undocumented Term", "type": "checkoutCenter", "displayHint": "autocomplete", "constraint": null }, { "name": "Unique Id", "parameter": "uniqueId", "documentation": "Undocumented Term", "type": "string", "displayHint": "string", "constraint": null }, { "name": "Autocomplete", "parameter": "autocomplete", "documentation": "Undocumented Term", "type": "string", "displayHint": "string", "constraint": null }, { "name": "Contained By Authset", "parameter": "containedByAuthset", "documentation": "Undocumented Term", "type": "authset", "displayHint": "autocomplete", "constraint": null }, { "name": "Contained By Authset Autocomplete", "parameter": "containedByAuthsetAutocomplete", "documentation": "Undocumented Term", "type": "string", "displayHint": "autocompleteString", "constraint": null }, { "name": "Managing Organization", "parameter": "organization", "documentation": "Undocumented Term", "type": "organization", "displayHint": "entity", "constraint": { "name": "organizations", "type": "dynamicOrderedSet" } }, { "name": "Staffed", "parameter": "staffed", "documentation": "Undocumented Term", "type": "boolean", "displayHint": "boolean", "constraint": null }, { "name": "Unstaffed", "parameter": "unstaffed", "documentation": "Undocumented Term", "type": "boolean", "displayHint": "boolean", "constraint": null } ], "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
POSTing to a namespace's search method will perform a search across all entities of that type. An empty Request payload will result in the returning of all entites of the type. This should be used with caution as some classes of entity may have hundreds of thousands of instances. There is no built-in limit on the number of results. Extreme result sets may cause performance problems with the server itself.
POST /rest/checkoutCenter/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": {} }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/checkoutCenter/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 18, "summary": null, "result": [ { "_class": "checkoutCenter", "oid": 672, "name": "Checkout Center 1", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 2p . FBS . PP Access = T" }, { "_class": "checkoutCenter", "oid": 1918, "name": "Checkout Center 11", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, { "_class": "checkoutCenter", "oid": 2276, "name": "Checkout Center 16", "organization": { "_class": "organization", "oid": 2172, "name": "Organization D" }, "description": "" }, { "_class": "checkoutCenter", "oid": 1, "name": "WebCheckout", "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "description": null }, { "_class": "checkoutCenter", "oid": 711, "name": "Checkout Center 3", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT pickup 8a . FBS . PP Access = F" }, { "_class": "checkoutCenter", "oid": 1637, "name": "Checkout Center 6", "organization": { "_class": "organization", "oid": 1563, "name": "Organization B" }, "description": "" }, { "_class": "checkoutCenter", "oid": 1668, "name": "Checkout Center 7", "organization": { "_class": "organization", "oid": 1563, "name": "Organization B" }, "description": "" }, { "_class": "checkoutCenter", "oid": 1905, "name": "Checkout Center 10", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, { "_class": "checkoutCenter", "oid": 1684, "name": "Checkout Center 8", "organization": { "_class": "organization", "oid": 1563, "name": "Organization B" }, "description": "" }, { "_class": "checkoutCenter", "oid": 1606, "name": "Checkout Center 5", "organization": { "_class": "organization", "oid": 1563, "name": "Organization B" }, "description": "" }, { "_class": "checkoutCenter", "oid": 2197, "name": "Checkout Center 13", "organization": { "_class": "organization", "oid": 2172, "name": "Organization D" }, "description": "" }, { "_class": "checkoutCenter", "oid": 1934, "name": "Checkout Center 12", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, { "_class": "checkoutCenter", "oid": 691, "name": "Checkout Center 2", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "Hours: 7a - 11a, 1p - 10p . DAT return 3p . FBS . PP Access = T" }, { "_class": "checkoutCenter", "oid": 2241, "name": "Checkout Center 14", "organization": { "_class": "organization", "oid": 2172, "name": "Organization D" }, "description": "" }, { "_class": "checkoutCenter", "oid": 2254, "name": "Checkout Center 15", "organization": { "_class": "organization", "oid": 2172, "name": "Organization D" }, "description": "" }, { "_class": "checkoutCenter", "oid": 724, "name": "Checkout Center 4", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "8a - 9p . DAT not set . No FBS . PP Access = F" }, { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Specifying keys and values in the query argument will limit the search to entities matching these query terms and values. See the API Reference that is available on each WebChecheckout instance for a list of available query terms and their arguments.
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "query": { "firstName": "John" } } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 1, "summary": null, "result": [ { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Multiple terms may be combined using an "and" or "or" term.
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "query": { "and": { "firstName": "John", "lastName": "Smith" } } } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 0, "summary": null, "result": [] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "query": { "or": { "firstName": "John", "lastName": "Kim" } } } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 1, "summary": null, "result": [ { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Specifying a non-existing query term, or an improperly formatted value will result in an error.
As with getting an individual entity, with searching you may specify the properties you would like to be encluded with each result. This is done by providing a property template to the properties argument. For details on property templates see the Property Templates section below. As always, the mandatory three properties will be included.
The limit argument will limit the number of results returned, even if more results match the query terms.
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "limit": 5 } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 90, "summary": null, "result": [ { "_class": "person", "oid": 256, "name": "super user", "userid": "superUser", "barcode": null }, { "_class": "person", "oid": 2553, "name": "Bernard Campbell", "userid": "Beanie", "barcode": null }, { "_class": "person", "oid": 2555, "name": "Chandler Bing", "userid": "ChBing", "barcode": null }, { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, { "_class": "person", "oid": 1, "name": "Administrator", "userid": "admin", "barcode": "12345" } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
The order-by argument causes the results of the find to be sorted by the named property. It is an error to provide a name that is not a property in the namespace being searched for. It is also an error to provide the name of a property that is not "dbSortable".
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "limit": 5, "orderBy": "sortableName" } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 90, "summary": null, "result": [ { "_class": "person", "oid": 1, "name": "Administrator", "userid": "admin", "barcode": "12345" }, { "_class": "person", "oid": 4542, "name": "Leesa Allen", "userid": "leesa", "barcode": null }, { "_class": "person", "oid": 4543, "name": "Bilbo Baggins", "userid": "hobbit", "barcode": null }, { "_class": "person", "oid": 2583, "name": "Pam Beesly", "userid": "Pammm", "barcode": null }, { "_class": "person", "oid": 2562, "name": "Elizabeth Bennet", "userid": "Eliza", "barcode": null } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
The order-direction argument determines the sort order of the order-by argument and takes one of two values:
Sort in descending canonical order (ex Z,Y,X,etc)
Sort in ascending canonical order (ex A,B,C,etc)
The argument is ignored if you have not provided an order-by property.
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "limit": 5, "orderBy": "sortableName", "orderDirection": "desc" } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 90, "summary": null, "result": [ { "_class": "person", "oid": 825488, "name": "Window Worker", "userid": "windowworker", "barcode": null }, { "_class": "person", "oid": 2570, "name": "Howard Wolowitz", "userid": "Howitz", "barcode": null }, { "_class": "person", "oid": 4587, "name": "Mary Wilson", "userid": "20047", "barcode": null }, { "_class": "person", "oid": 4586, "name": "Elsie Wilby", "userid": "22876", "barcode": null }, { "_class": "person", "oid": 4584, "name": "Morris Weissman", "userid": "23503", "barcode": null } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
The order-null argument determines where null values are sorted in the results and takes one of two values
Null values are sorted ahead of non-null values
Null values are sorted after non-null values
The argument is ignored if you have not provided an order-by property.
The order argument expands on the previous order-* arguments allowing for sorting by multiple properties. Accepts a list of objects specifying "by", "direction", and "nulls" options. Returns results sorted by each option in turn.
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "order": [ { "by": "lastName", "direction": "desc" }, { "by": "userid", "direction": "asc" } ] } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 90, "summary": null, "result": [ { "_class": "person", "oid": 825488, "name": "Window Worker", "userid": "windowworker", "barcode": null }, { "_class": "person", "oid": 2570, "name": "Howard Wolowitz", "userid": "Howitz", "barcode": null }, { "_class": "person", "oid": 4587, "name": "Mary Wilson", "userid": "20047", "barcode": null }, { "_class": "person", "oid": 4586, "name": "Elsie Wilby", "userid": "22876", "barcode": null }, { "_class": "person", "oid": 4584, "name": "Morris Weissman", "userid": "23503", "barcode": null }, { "_class": "person", "oid": 800788, "name": "Admin User", "userid": "adminuser", "barcode": null }, { "_class": "person", "oid": 256, "name": "super user", "userid": "superUser", "barcode": null }, { "_class": "person", "oid": 628630, "name": "Zbigniew William Unicorn", "userid": "zwu", "barcode": null }, { "_class": "person", "oid": 2574, "name": "Joey Tribbiani", "userid": "JoeT", "barcode": null }, { "_class": "person", "oid": 4583, "name": "Constance Trentham", "userid": "22077", "barcode": null }, { "_class": "person", "oid": 4582, "name": "Rueben Tishkoff", "userid": "23139", "barcode": null }, { "_class": "person", "oid": 4580, "name": "Dorothy Thompson", "userid": "22719", "barcode": null }, { "_class": "person", "oid": 4581, "name": "Stephen Thompson", "userid": "23643", "barcode": null }, { "_class": "person", "oid": 2569, "name": "holly test", "userid": "holly test", "barcode": null }, { "_class": "person", "oid": 4579, "name": "Basher Tarr", "userid": "22887", "barcode": null }, { "_class": "person", "oid": 4577, "name": "Louisa Stockbridge", "userid": "22221", "barcode": null }, { "_class": "person", "oid": 4578, "name": "Raymond Stockbridge", "userid": "23654", "barcode": null }, { "_class": "person", "oid": 2584, "name": "Paul Spericki", "userid": "PaSper", "barcode": null }, { "_class": "person", "oid": 2577, "name": "Max Skinner", "userid": "MaxS", "barcode": null }, { "_class": "person", "oid": 2595, "name": "Henry Skinner", "userid": "Uncle", "barcode": null }, { "_class": "person", "oid": 4575, "name": "Neil Shore", "userid": "nshort", "barcode": null }, { "_class": "person", "oid": 4574, "name": "Tom Servo", "userid": "sol1", "barcode": "sat_of_love1" }, { "_class": "person", "oid": 2582, "name": "Michael Scott", "userid": "MScott", "barcode": null }, { "_class": "person", "oid": 2561, "name": "Dwight Schrute", "userid": "DSchrute", "barcode": null }, { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, { "_class": "person", "oid": 4572, "name": "Rusty Ryan", "userid": "22939", "barcode": null }, { "_class": "person", "oid": 4571, "name": "Gypsy the Robot", "userid": "Gypsy", "barcode": "gypsy001" }, { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, { "_class": "person", "oid": 2557, "name": "Christie Roberts", "userid": "ChriRo", "barcode": null }, { "_class": "person", "oid": 2594, "name": "Frank Ricard", "userid": "The Tank", "barcode": null }, { "_class": "person", "oid": 4569, "name": "Derek Probert", "userid": "13924", "barcode": null }, { "_class": "person", "oid": 2566, "name": "Gloria Pritchett", "userid": "GloPr", "barcode": null }, { "_class": "person", "oid": 2580, "name": "Mitchell Pritchett", "userid": "Mitchell", "barcode": null }, { "_class": "person", "oid": 2589, "name": "Jay Pritchett", "userid": "Pritchett", "barcode": null }, { "_class": "person", "oid": 2556, "name": "Gordon Pritchard", "userid": "Cheese", "barcode": null }, { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, { "_class": "person", "oid": 4568, "name": "Robert Parks", "userid": "21022", "barcode": null }, { "_class": "person", "oid": 4567, "name": "Danny Ocean", "userid": "22994", "barcode": null }, { "_class": "person", "oid": 4566, "name": "Ivor Novello", "userid": "20299", "barcode": null }, { "_class": "person", "oid": 2560, "name": "Debi Newberry", "userid": "DebNew", "barcode": null }, { "_class": "person", "oid": 4565, "name": "Freddie Nesbitt", "userid": "22901", "barcode": null }, { "_class": "person", "oid": 4564, "name": "Anthony Meredith", "userid": "23527", "barcode": null }, { "_class": "person", "oid": 4562, "name": "Sylvia Short-stack McCordle", "userid": "22500", "barcode": "22-22" }, { "_class": "person", "oid": 4563, "name": "William McCordle", "userid": "23251", "barcode": null }, { "_class": "person", "oid": 2567, "name": "Mitch Martin", "userid": "Godfather", "barcode": null }, { "_class": "person", "oid": 4560, "name": "Turk Malloy", "userid": "22902", "barcode": null }, { "_class": "person", "oid": 4561, "name": "Virgil Malloy", "userid": "23092", "barcode": null }, { "_class": "person", "oid": 4559, "name": "Mary Maceachran", "userid": "17530", "barcode": null }, { "_class": "person", "oid": 2593, "name": "Steven Lardner", "userid": "Slard", "barcode": null }, { "_class": "person", "oid": 2591, "name": "Rajesh Koothrappali", "userid": "Raj", "barcode": null }, { "_class": "person", "oid": 4558, "name": "Eli Jennings", "userid": "23605", "barcode": null }, { "_class": "person", "oid": 2585, "name": "Penny Hostadter", "userid": "Pen", "barcode": null }, { "_class": "person", "oid": 2576, "name": "Leondard Hofstadter", "userid": "Leonter", "barcode": null }, { "_class": "person", "oid": 4557, "name": "Joel Hodgson", "userid": "sol3", "barcode": null }, { "_class": "person", "oid": 2573, "name": "Jim Halpert", "userid": "JHalpert", "barcode": null }, { "_class": "person", "oid": 4556, "name": "Jessica Guzman", "userid": "jessica", "barcode": null }, { "_class": "person", "oid": 2568, "name": "Man Grocer", "userid": "Grocer", "barcode": null }, { "_class": "person", "oid": 2590, "name": "Rachel Green", "userid": "Rach", "barcode": null }, { "_class": "person", "oid": 4555, "name": "George Grant", "userid": "23597", "barcode": null }, { "_class": "person", "oid": 2581, "name": "Monica Gellar", "userid": "MonGe", "barcode": null }, { "_class": "person", "oid": 2579, "name": "Mrs. Gardner", "userid": "MGardner", "barcode": null }, { "_class": "person", "oid": 4554, "name": "TV's Coniff Frank", "userid": "tv's Frank", "barcode": "Deep13-2" }, { "_class": "person", "oid": 4553, "name": "Clayton Deborah Susan Forrester", "userid": "forrester", "barcode": "Deep13-1" }, { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, { "_class": "person", "oid": 2565, "name": "Francis Duflot", "userid": "Francis", "barcode": null }, { "_class": "person", "oid": 4551, "name": "Henry Denton", "userid": "21243", "barcode": null }, { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, { "_class": "person", "oid": 4549, "name": "Lara Seraphim Croft", "userid": "23428", "barcode": "23428-01" }, { "_class": "person", "oid": 2592, "name": "Sheldon Cooper", "userid": "Shelly", "barcode": null }, { "_class": "person", "oid": 4548, "name": "Jeannie Clark", "userid": "jeannie", "barcode": null }, { "_class": "person", "oid": 2563, "name": "Fanny Chenal", "userid": "FanCH", "barcode": null }, { "_class": "person", "oid": 4547, "name": "Frank Catton", "userid": "22893", "barcode": null }, { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, { "_class": "person", "oid": 2553, "name": "Bernard Campbell", "userid": "Beanie", "barcode": null }, { "_class": "person", "oid": 2575, "name": "Laura Campbell", "userid": "LCamp", "barcode": null }, { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, { "_class": "person", "oid": 2587, "name": "Pheobe Buffay", "userid": "Phebs", "barcode": null }, { "_class": "person", "oid": 4544, "name": "Saul Bloom", "userid": "23032", "barcode": null }, { "_class": "person", "oid": 2578, "name": "Martin Q Blank", "userid": "MBlank", "barcode": null }, { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, { "_class": "person", "oid": 2555, "name": "Chandler Bing", "userid": "ChBing", "barcode": null }, { "_class": "person", "oid": 2562, "name": "Elizabeth Bennet", "userid": "Eliza", "barcode": null }, { "_class": "person", "oid": 2571, "name": "Jane Bennet", "userid": "Jane", "barcode": null }, { "_class": "person", "oid": 2583, "name": "Pam Beesly", "userid": "Pammm", "barcode": null }, { "_class": "person", "oid": 4543, "name": "Bilbo Baggins", "userid": "hobbit", "barcode": null }, { "_class": "person", "oid": 4542, "name": "Leesa Allen", "userid": "leesa", "barcode": null }, { "_class": "person", "oid": 1, "name": "Administrator", "userid": "admin", "barcode": "12345" } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
The offset argument will ignore the first N results before returning any matches.
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "limit": 5, "offset": 0, "orderBy": "sortableName", "orderDirection": "desc" } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 90, "summary": null, "result": [ { "_class": "person", "oid": 825488, "name": "Window Worker", "userid": "windowworker", "barcode": null }, { "_class": "person", "oid": 2570, "name": "Howard Wolowitz", "userid": "Howitz", "barcode": null }, { "_class": "person", "oid": 4587, "name": "Mary Wilson", "userid": "20047", "barcode": null }, { "_class": "person", "oid": 4586, "name": "Elsie Wilby", "userid": "22876", "barcode": null }, { "_class": "person", "oid": 4584, "name": "Morris Weissman", "userid": "23503", "barcode": null } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "limit": 5, "offset": 5, "orderBy": "sortableName", "orderDirection": "desc" } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 90, "summary": null, "result": [ { "_class": "person", "oid": 256, "name": "super user", "userid": "superUser", "barcode": null }, { "_class": "person", "oid": 800788, "name": "Admin User", "userid": "adminuser", "barcode": null }, { "_class": "person", "oid": 628630, "name": "Zbigniew William Unicorn", "userid": "zwu", "barcode": null }, { "_class": "person", "oid": 2574, "name": "Joey Tribbiani", "userid": "JoeT", "barcode": null }, { "_class": "person", "oid": 4583, "name": "Constance Trentham", "userid": "22077", "barcode": null } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
The count argument revises the type of value returned by search. It no longer returns an array, instead it returns an integer count of the number of matching entities. This operation is far more efficient that returing a list of results.
The oidsOnly argument revises the return value of the search. Instead of returning an array of entities, it returns an array of OIDsfor the result. This may be used for performance reasons when it would be better to retrieve entites as they are needed. For example, see the CSV Export section below.
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "limit": 10, "oidsOnly": true } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 90, "summary": null, "result": [ 1, 256, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560 ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
The mutiQuery argument allows for multiple searches for the same entity type in a single call. It accepts an array of query definitions, including all above arguments with the exception of properties which if provided to search still applies to all returned results.
The result is an array of search result payloads in the same order as the queries.
POST /rest/person/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "multiQuery": [ { "query": { "firstName": "John" } }, { "query": { "userid": "admin" } } ], "properties": [ "street", "street2", "city", "state", "telephone", "email" ] } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": [ { "count": 1, "summary": null, "result": [ { "_class": "person", "oid": 4546, "name": "John Carter", "email": "mattv@webcheckout.net", "telephone": "804-646-7000", "state": "Virginia", "city": "Richmond", "street2": null, "street": "890 W. Broad Street" } ] }, { "count": 1, "summary": null, "result": [ { "_class": "person", "oid": 1, "name": "Administrator", "email": null, "telephone": null, "state": null, "city": null, "street2": null, "street": null } ] } ], "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
A namespace may have a set of predefined find configurations describing a set of query terms, and a set of result properties for a search. The list for each entity type can be retrieved by GETing the namespace searchConfigs asset. The results are the name and guid of the config and a flag to tell if it is the default query config for the entity type. A full configuration may be retrieved by posting to the configurations/searchConfig. See configuration in Special Namespaces for details.
Please note that configurations are highly unstable and likely to change considerably in upcomming releases.POST /rest/allocation/search HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": {} }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/allocation/search", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "count": 1991, "summary": null, "result": [ { "_class": "allocation", "oid": 31711, "name": "CK-2", "id": "CK-2", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-07-24T11:00:00.000000-05:00", "pickupTime": "2018-07-24T08:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": "Wait, what are you doing?" }, { "_class": "allocation", "oid": 32563, "name": "CK-3", "id": "CK-3", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-07-20T12:00:00.000000-05:00", "pickupTime": "2018-07-17T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": "there is no show on this allocation" }, { "_class": "allocation", "oid": 32788, "name": "CK-4", "id": "CK-4", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2018-10-04T08:41:14.207835-05:00", "pickupTime": "2018-07-11T10:39:27.078271-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4554, "name": "TV's Coniff Frank", "userid": "tv's Frank", "barcode": "Deep13-2" }, "note": "this is a strike only, no delivery location" }, { "_class": "allocation", "oid": 32892, "name": "CK-5", "id": "CK-5", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-07-25T20:00:00.000000-05:00", "pickupTime": "2018-07-25T16:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4553, "name": "Clayton Deborah Susan Forrester", "userid": "forrester", "barcode": "Deep13-1" }, "note": "this is a setup for will call and a show, no delivery location" }, { "_class": "allocation", "oid": 33025, "name": "CK-6", "id": "CK-6", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-07-27T23:30:00.000000-05:00", "pickupTime": "2018-07-27T21:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": "set, strike, show, delivery location, no assignees" }, { "_class": "allocation", "oid": 33159, "name": "CK-7", "id": "CK-7", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2019-02-27T10:45:47.774396-06:00", "pickupTime": "2018-07-11T10:45:49.663151-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": "this is a checkout with all fields" }, { "_class": "allocation", "oid": 33597, "name": "CK-8", "id": "CK-8", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-10-04T11:00:00.000000-05:00", "pickupTime": "2018-10-04T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 33693, "name": "CK-9", "id": "CK-9", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-10-04T11:00:00.000000-05:00", "pickupTime": "2018-10-04T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 76570, "name": "CK-23", "id": "CK-23", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-12-31T08:00:00.000000-06:00", "pickupTime": "2018-12-31T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76748, "name": "CK-24", "id": "CK-24", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-06T08:00:00.000000-06:00", "pickupTime": "2019-01-06T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76751, "name": "CK-25", "id": "CK-25", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-13T08:00:00.000000-06:00", "pickupTime": "2019-01-13T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76754, "name": "CK-26", "id": "CK-26", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-20T08:00:00.000000-06:00", "pickupTime": "2019-01-20T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76757, "name": "CK-27", "id": "CK-27", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-27T08:00:00.000000-06:00", "pickupTime": "2019-01-27T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76760, "name": "CK-28", "id": "CK-28", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-03T08:00:00.000000-06:00", "pickupTime": "2019-02-03T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76763, "name": "CK-29", "id": "CK-29", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-10T08:00:00.000000-06:00", "pickupTime": "2019-02-10T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76766, "name": "CK-30", "id": "CK-30", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-17T08:00:00.000000-06:00", "pickupTime": "2019-02-17T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76769, "name": "CK-31", "id": "CK-31", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-24T08:00:00.000000-06:00", "pickupTime": "2019-02-24T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76772, "name": "CK-32", "id": "CK-32", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-03T08:00:00.000000-06:00", "pickupTime": "2019-03-03T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76778, "name": "CK-34", "id": "CK-34", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-17T08:00:00.000000-05:00", "pickupTime": "2019-03-17T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76781, "name": "CK-35", "id": "CK-35", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-24T08:00:00.000000-05:00", "pickupTime": "2019-03-24T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76784, "name": "CK-36", "id": "CK-36", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-31T08:00:00.000000-05:00", "pickupTime": "2019-03-31T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76788, "name": "CK-37", "id": "CK-37", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-07T08:00:00.000000-05:00", "pickupTime": "2019-04-07T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76791, "name": "CK-38", "id": "CK-38", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-14T08:00:00.000000-05:00", "pickupTime": "2019-04-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76797, "name": "CK-39", "id": "CK-39", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-21T08:00:00.000000-05:00", "pickupTime": "2019-04-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76800, "name": "CK-40", "id": "CK-40", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-28T08:00:00.000000-05:00", "pickupTime": "2019-04-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76804, "name": "CK-41", "id": "CK-41", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-05T08:00:00.000000-05:00", "pickupTime": "2019-05-05T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76807, "name": "CK-42", "id": "CK-42", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-12T08:00:00.000000-05:00", "pickupTime": "2019-05-12T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76810, "name": "CK-43", "id": "CK-43", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-19T08:00:00.000000-05:00", "pickupTime": "2019-05-19T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76813, "name": "CK-44", "id": "CK-44", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-26T08:00:00.000000-05:00", "pickupTime": "2019-05-26T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76816, "name": "CK-45", "id": "CK-45", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-02T08:00:00.000000-05:00", "pickupTime": "2019-06-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76819, "name": "CK-46", "id": "CK-46", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-09T08:00:00.000000-05:00", "pickupTime": "2019-06-09T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76822, "name": "CK-47", "id": "CK-47", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-16T08:00:00.000000-05:00", "pickupTime": "2019-06-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76825, "name": "CK-48", "id": "CK-48", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-23T08:00:00.000000-05:00", "pickupTime": "2019-06-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76828, "name": "CK-49", "id": "CK-49", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-30T08:00:00.000000-05:00", "pickupTime": "2019-06-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76831, "name": "CK-50", "id": "CK-50", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-07T08:00:00.000000-05:00", "pickupTime": "2019-07-07T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76834, "name": "CK-51", "id": "CK-51", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-14T08:00:00.000000-05:00", "pickupTime": "2019-07-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76837, "name": "CK-52", "id": "CK-52", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-21T08:00:00.000000-05:00", "pickupTime": "2019-07-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76840, "name": "CK-53", "id": "CK-53", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-28T08:00:00.000000-05:00", "pickupTime": "2019-07-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76843, "name": "CK-54", "id": "CK-54", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-04T08:00:00.000000-05:00", "pickupTime": "2019-08-04T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76846, "name": "CK-55", "id": "CK-55", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-11T08:00:00.000000-05:00", "pickupTime": "2019-08-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76849, "name": "CK-56", "id": "CK-56", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-18T08:00:00.000000-05:00", "pickupTime": "2019-08-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76852, "name": "CK-57", "id": "CK-57", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-25T08:00:00.000000-05:00", "pickupTime": "2019-08-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76855, "name": "CK-58", "id": "CK-58", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-01T08:00:00.000000-05:00", "pickupTime": "2019-09-01T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76858, "name": "CK-59", "id": "CK-59", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-08T08:00:00.000000-05:00", "pickupTime": "2019-09-08T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76861, "name": "CK-60", "id": "CK-60", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-15T08:00:00.000000-05:00", "pickupTime": "2019-09-15T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76864, "name": "CK-61", "id": "CK-61", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-22T08:00:00.000000-05:00", "pickupTime": "2019-09-22T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76867, "name": "CK-62", "id": "CK-62", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-29T08:00:00.000000-05:00", "pickupTime": "2019-09-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76870, "name": "CK-63", "id": "CK-63", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-06T08:00:00.000000-05:00", "pickupTime": "2019-10-06T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76873, "name": "CK-64", "id": "CK-64", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-13T08:00:00.000000-05:00", "pickupTime": "2019-10-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76876, "name": "CK-65", "id": "CK-65", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-20T08:00:00.000000-05:00", "pickupTime": "2019-10-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76879, "name": "CK-66", "id": "CK-66", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-27T08:00:00.000000-05:00", "pickupTime": "2019-10-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76883, "name": "CK-67", "id": "CK-67", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-03T08:00:00.000000-06:00", "pickupTime": "2019-11-03T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76886, "name": "CK-68", "id": "CK-68", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-10T08:00:00.000000-06:00", "pickupTime": "2019-11-10T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76889, "name": "CK-69", "id": "CK-69", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-17T08:00:00.000000-06:00", "pickupTime": "2019-11-17T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76892, "name": "CK-70", "id": "CK-70", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-24T08:00:00.000000-06:00", "pickupTime": "2019-11-24T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76895, "name": "CK-71", "id": "CK-71", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-01T08:00:00.000000-06:00", "pickupTime": "2019-12-01T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76898, "name": "CK-72", "id": "CK-72", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-08T08:00:00.000000-06:00", "pickupTime": "2019-12-08T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76901, "name": "CK-73", "id": "CK-73", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-15T08:00:00.000000-06:00", "pickupTime": "2019-12-15T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76905, "name": "CK-74", "id": "CK-74", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-22T08:00:00.000000-06:00", "pickupTime": "2019-12-22T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76908, "name": "CK-75", "id": "CK-75", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-29T08:00:00.000000-06:00", "pickupTime": "2019-12-29T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76963, "name": "CK-76", "id": "CK-76", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-07T08:00:00.000000-06:00", "pickupTime": "2019-01-07T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76966, "name": "CK-77", "id": "CK-77", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-14T08:00:00.000000-06:00", "pickupTime": "2019-01-14T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76969, "name": "CK-78", "id": "CK-78", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-21T08:00:00.000000-06:00", "pickupTime": "2019-01-21T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76972, "name": "CK-79", "id": "CK-79", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-28T08:00:00.000000-06:00", "pickupTime": "2019-01-28T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76975, "name": "CK-80", "id": "CK-80", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-04T08:00:00.000000-06:00", "pickupTime": "2019-02-04T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76978, "name": "CK-81", "id": "CK-81", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-11T08:00:00.000000-06:00", "pickupTime": "2019-02-11T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76981, "name": "CK-82", "id": "CK-82", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-18T08:00:00.000000-06:00", "pickupTime": "2019-02-18T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76984, "name": "CK-83", "id": "CK-83", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-25T08:00:00.000000-06:00", "pickupTime": "2019-02-25T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76987, "name": "CK-84", "id": "CK-84", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-04T08:00:00.000000-06:00", "pickupTime": "2019-03-04T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76990, "name": "CK-85", "id": "CK-85", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-11T08:00:00.000000-05:00", "pickupTime": "2019-03-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76993, "name": "CK-86", "id": "CK-86", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-18T08:00:00.000000-05:00", "pickupTime": "2019-03-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76996, "name": "CK-87", "id": "CK-87", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-25T08:00:00.000000-05:00", "pickupTime": "2019-03-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 76999, "name": "CK-88", "id": "CK-88", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-01T08:00:00.000000-05:00", "pickupTime": "2019-04-01T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77002, "name": "CK-89", "id": "CK-89", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-08T08:00:00.000000-05:00", "pickupTime": "2019-04-08T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77005, "name": "CK-90", "id": "CK-90", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-15T08:00:00.000000-05:00", "pickupTime": "2019-04-15T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77008, "name": "CK-91", "id": "CK-91", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-22T08:00:00.000000-05:00", "pickupTime": "2019-04-22T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77011, "name": "CK-92", "id": "CK-92", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-29T08:00:00.000000-05:00", "pickupTime": "2019-04-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77014, "name": "CK-93", "id": "CK-93", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-06T08:00:00.000000-05:00", "pickupTime": "2019-05-06T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77017, "name": "CK-94", "id": "CK-94", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-13T08:00:00.000000-05:00", "pickupTime": "2019-05-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77020, "name": "CK-95", "id": "CK-95", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-20T08:00:00.000000-05:00", "pickupTime": "2019-05-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77023, "name": "CK-96", "id": "CK-96", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-27T08:00:00.000000-05:00", "pickupTime": "2019-05-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77026, "name": "CK-97", "id": "CK-97", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-03T08:00:00.000000-05:00", "pickupTime": "2019-06-03T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77029, "name": "CK-98", "id": "CK-98", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-10T08:00:00.000000-05:00", "pickupTime": "2019-06-10T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77032, "name": "CK-99", "id": "CK-99", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-17T08:00:00.000000-05:00", "pickupTime": "2019-06-17T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77035, "name": "CK-100", "id": "CK-100", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-24T08:00:00.000000-05:00", "pickupTime": "2019-06-24T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77040, "name": "CK-101", "id": "CK-101", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-01T08:00:00.000000-05:00", "pickupTime": "2019-07-01T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77043, "name": "CK-102", "id": "CK-102", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-08T08:00:00.000000-05:00", "pickupTime": "2019-07-08T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77047, "name": "CK-103", "id": "CK-103", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-15T08:00:00.000000-05:00", "pickupTime": "2019-07-15T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77050, "name": "CK-104", "id": "CK-104", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-22T08:00:00.000000-05:00", "pickupTime": "2019-07-22T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77053, "name": "CK-105", "id": "CK-105", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-29T08:00:00.000000-05:00", "pickupTime": "2019-07-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77056, "name": "CK-106", "id": "CK-106", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-05T08:00:00.000000-05:00", "pickupTime": "2019-08-05T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77059, "name": "CK-107", "id": "CK-107", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-12T08:00:00.000000-05:00", "pickupTime": "2019-08-12T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77062, "name": "CK-108", "id": "CK-108", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-19T08:00:00.000000-05:00", "pickupTime": "2019-08-19T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77065, "name": "CK-109", "id": "CK-109", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-26T08:00:00.000000-05:00", "pickupTime": "2019-08-26T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77068, "name": "CK-110", "id": "CK-110", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T08:00:00.000000-05:00", "pickupTime": "2019-09-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77071, "name": "CK-111", "id": "CK-111", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T08:00:00.000000-05:00", "pickupTime": "2019-09-09T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77075, "name": "CK-112", "id": "CK-112", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T08:00:00.000000-05:00", "pickupTime": "2019-09-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77078, "name": "CK-113", "id": "CK-113", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T08:00:00.000000-05:00", "pickupTime": "2019-09-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77081, "name": "CK-114", "id": "CK-114", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T08:00:00.000000-05:00", "pickupTime": "2019-09-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77084, "name": "CK-115", "id": "CK-115", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T08:00:00.000000-05:00", "pickupTime": "2019-10-07T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77087, "name": "CK-116", "id": "CK-116", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T08:00:00.000000-05:00", "pickupTime": "2019-10-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77090, "name": "CK-117", "id": "CK-117", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T08:00:00.000000-05:00", "pickupTime": "2019-10-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77094, "name": "CK-118", "id": "CK-118", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T08:00:00.000000-05:00", "pickupTime": "2019-10-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77097, "name": "CK-119", "id": "CK-119", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T08:00:00.000000-06:00", "pickupTime": "2019-11-04T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77100, "name": "CK-120", "id": "CK-120", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T08:00:00.000000-06:00", "pickupTime": "2019-11-11T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77103, "name": "CK-121", "id": "CK-121", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T08:00:00.000000-06:00", "pickupTime": "2019-11-18T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77106, "name": "CK-122", "id": "CK-122", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T08:00:00.000000-06:00", "pickupTime": "2019-11-25T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77109, "name": "CK-123", "id": "CK-123", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-02T08:00:00.000000-06:00", "pickupTime": "2019-12-02T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77112, "name": "CK-124", "id": "CK-124", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-09T08:00:00.000000-06:00", "pickupTime": "2019-12-09T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77115, "name": "CK-125", "id": "CK-125", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-16T08:00:00.000000-06:00", "pickupTime": "2019-12-16T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77119, "name": "CK-126", "id": "CK-126", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-23T08:00:00.000000-06:00", "pickupTime": "2019-12-23T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77122, "name": "CK-127", "id": "CK-127", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-30T08:00:00.000000-06:00", "pickupTime": "2019-12-30T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77141, "name": "CK-128", "id": "CK-128", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-01T08:00:00.000000-06:00", "pickupTime": "2019-01-01T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77144, "name": "CK-129", "id": "CK-129", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-08T08:00:00.000000-06:00", "pickupTime": "2019-01-08T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77147, "name": "CK-130", "id": "CK-130", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-15T08:00:00.000000-06:00", "pickupTime": "2019-01-15T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77150, "name": "CK-131", "id": "CK-131", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-22T08:00:00.000000-06:00", "pickupTime": "2019-01-22T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77153, "name": "CK-132", "id": "CK-132", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-29T08:00:00.000000-06:00", "pickupTime": "2019-01-29T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77156, "name": "CK-133", "id": "CK-133", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-05T08:00:00.000000-06:00", "pickupTime": "2019-02-05T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77159, "name": "CK-134", "id": "CK-134", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-12T08:00:00.000000-06:00", "pickupTime": "2019-02-12T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77162, "name": "CK-135", "id": "CK-135", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-19T08:00:00.000000-06:00", "pickupTime": "2019-02-19T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77165, "name": "CK-136", "id": "CK-136", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-26T08:00:00.000000-06:00", "pickupTime": "2019-02-26T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77168, "name": "CK-137", "id": "CK-137", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-05T08:00:00.000000-06:00", "pickupTime": "2019-03-05T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77171, "name": "CK-138", "id": "CK-138", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-12T08:00:00.000000-05:00", "pickupTime": "2019-03-12T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77174, "name": "CK-139", "id": "CK-139", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-19T08:00:00.000000-05:00", "pickupTime": "2019-03-19T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77177, "name": "CK-140", "id": "CK-140", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-26T08:00:00.000000-05:00", "pickupTime": "2019-03-26T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77180, "name": "CK-141", "id": "CK-141", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-02T08:00:00.000000-05:00", "pickupTime": "2019-04-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77183, "name": "CK-142", "id": "CK-142", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-09T08:00:00.000000-05:00", "pickupTime": "2019-04-09T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77186, "name": "CK-143", "id": "CK-143", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-16T08:00:00.000000-05:00", "pickupTime": "2019-04-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77189, "name": "CK-144", "id": "CK-144", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-23T08:00:00.000000-05:00", "pickupTime": "2019-04-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77192, "name": "CK-145", "id": "CK-145", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-30T08:00:00.000000-05:00", "pickupTime": "2019-04-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77195, "name": "CK-146", "id": "CK-146", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-07T08:00:00.000000-05:00", "pickupTime": "2019-05-07T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77198, "name": "CK-147", "id": "CK-147", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-14T08:00:00.000000-05:00", "pickupTime": "2019-05-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77201, "name": "CK-148", "id": "CK-148", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-21T08:00:00.000000-05:00", "pickupTime": "2019-05-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77205, "name": "CK-149", "id": "CK-149", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-28T08:00:00.000000-05:00", "pickupTime": "2019-05-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77208, "name": "CK-150", "id": "CK-150", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-04T08:00:00.000000-05:00", "pickupTime": "2019-06-04T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77211, "name": "CK-151", "id": "CK-151", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-11T08:00:00.000000-05:00", "pickupTime": "2019-06-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77214, "name": "CK-152", "id": "CK-152", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-18T08:00:00.000000-05:00", "pickupTime": "2019-06-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77217, "name": "CK-153", "id": "CK-153", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-25T08:00:00.000000-05:00", "pickupTime": "2019-06-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77220, "name": "CK-154", "id": "CK-154", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-02T08:00:00.000000-05:00", "pickupTime": "2019-07-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77223, "name": "CK-155", "id": "CK-155", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-09T08:00:00.000000-05:00", "pickupTime": "2019-07-09T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77227, "name": "CK-156", "id": "CK-156", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-16T08:00:00.000000-05:00", "pickupTime": "2019-07-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77230, "name": "CK-157", "id": "CK-157", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-23T08:00:00.000000-05:00", "pickupTime": "2019-07-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77233, "name": "CK-158", "id": "CK-158", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-30T08:00:00.000000-05:00", "pickupTime": "2019-07-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77236, "name": "CK-159", "id": "CK-159", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-06T08:00:00.000000-05:00", "pickupTime": "2019-08-06T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77239, "name": "CK-160", "id": "CK-160", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-13T08:00:00.000000-05:00", "pickupTime": "2019-08-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77242, "name": "CK-161", "id": "CK-161", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-20T08:00:00.000000-05:00", "pickupTime": "2019-08-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77245, "name": "CK-162", "id": "CK-162", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-27T08:00:00.000000-05:00", "pickupTime": "2019-08-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77248, "name": "CK-163", "id": "CK-163", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T08:00:00.000000-05:00", "pickupTime": "2019-09-03T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77251, "name": "CK-164", "id": "CK-164", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T08:00:00.000000-05:00", "pickupTime": "2019-09-10T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77254, "name": "CK-165", "id": "CK-165", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T08:00:00.000000-05:00", "pickupTime": "2019-09-17T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77257, "name": "CK-166", "id": "CK-166", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T08:00:00.000000-05:00", "pickupTime": "2019-09-24T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77260, "name": "CK-167", "id": "CK-167", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-01T08:00:00.000000-05:00", "pickupTime": "2019-10-01T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77263, "name": "CK-168", "id": "CK-168", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-08T08:00:00.000000-05:00", "pickupTime": "2019-10-08T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77266, "name": "CK-169", "id": "CK-169", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-15T08:00:00.000000-05:00", "pickupTime": "2019-10-15T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77269, "name": "CK-170", "id": "CK-170", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-22T08:00:00.000000-05:00", "pickupTime": "2019-10-22T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77272, "name": "CK-171", "id": "CK-171", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-29T08:00:00.000000-05:00", "pickupTime": "2019-10-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77275, "name": "CK-172", "id": "CK-172", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-05T08:00:00.000000-06:00", "pickupTime": "2019-11-05T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77278, "name": "CK-173", "id": "CK-173", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-12T08:00:00.000000-06:00", "pickupTime": "2019-11-12T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77281, "name": "CK-174", "id": "CK-174", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-19T08:00:00.000000-06:00", "pickupTime": "2019-11-19T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77284, "name": "CK-175", "id": "CK-175", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-26T08:00:00.000000-06:00", "pickupTime": "2019-11-26T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77287, "name": "CK-176", "id": "CK-176", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-03T08:00:00.000000-06:00", "pickupTime": "2019-12-03T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77290, "name": "CK-177", "id": "CK-177", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-10T08:00:00.000000-06:00", "pickupTime": "2019-12-10T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77293, "name": "CK-178", "id": "CK-178", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-17T08:00:00.000000-06:00", "pickupTime": "2019-12-17T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77296, "name": "CK-179", "id": "CK-179", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-24T08:00:00.000000-06:00", "pickupTime": "2019-12-24T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77299, "name": "CK-180", "id": "CK-180", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-31T08:00:00.000000-06:00", "pickupTime": "2019-12-31T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77321, "name": "CK-181", "id": "CK-181", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-02T08:00:00.000000-06:00", "pickupTime": "2019-01-02T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77324, "name": "CK-182", "id": "CK-182", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-09T08:00:00.000000-06:00", "pickupTime": "2019-01-09T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77327, "name": "CK-183", "id": "CK-183", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-16T08:00:00.000000-06:00", "pickupTime": "2019-01-16T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77330, "name": "CK-184", "id": "CK-184", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-23T08:00:00.000000-06:00", "pickupTime": "2019-01-23T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77333, "name": "CK-185", "id": "CK-185", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-30T08:00:00.000000-06:00", "pickupTime": "2019-01-30T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77336, "name": "CK-186", "id": "CK-186", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-06T08:00:00.000000-06:00", "pickupTime": "2019-02-06T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77342, "name": "CK-187", "id": "CK-187", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-13T08:00:00.000000-06:00", "pickupTime": "2019-02-13T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77345, "name": "CK-188", "id": "CK-188", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-20T08:00:00.000000-06:00", "pickupTime": "2019-02-20T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77348, "name": "CK-189", "id": "CK-189", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-27T08:00:00.000000-06:00", "pickupTime": "2019-02-27T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77352, "name": "CK-190", "id": "CK-190", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-06T08:00:00.000000-06:00", "pickupTime": "2019-03-06T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77355, "name": "CK-191", "id": "CK-191", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-13T08:00:00.000000-05:00", "pickupTime": "2019-03-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77358, "name": "CK-192", "id": "CK-192", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-20T08:00:00.000000-05:00", "pickupTime": "2019-03-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77361, "name": "CK-193", "id": "CK-193", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-27T08:00:00.000000-05:00", "pickupTime": "2019-03-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77365, "name": "CK-194", "id": "CK-194", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-03T08:00:00.000000-05:00", "pickupTime": "2019-04-03T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77368, "name": "CK-195", "id": "CK-195", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-10T08:00:00.000000-05:00", "pickupTime": "2019-04-10T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77371, "name": "CK-196", "id": "CK-196", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-17T08:00:00.000000-05:00", "pickupTime": "2019-04-17T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77374, "name": "CK-197", "id": "CK-197", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-24T08:00:00.000000-05:00", "pickupTime": "2019-04-24T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77377, "name": "CK-198", "id": "CK-198", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-01T08:00:00.000000-05:00", "pickupTime": "2019-05-01T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77380, "name": "CK-199", "id": "CK-199", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-08T08:00:00.000000-05:00", "pickupTime": "2019-05-08T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77383, "name": "CK-200", "id": "CK-200", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-15T08:00:00.000000-05:00", "pickupTime": "2019-05-15T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77386, "name": "CK-201", "id": "CK-201", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-22T08:00:00.000000-05:00", "pickupTime": "2019-05-22T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77389, "name": "CK-202", "id": "CK-202", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-29T08:00:00.000000-05:00", "pickupTime": "2019-05-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77392, "name": "CK-203", "id": "CK-203", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-05T08:00:00.000000-05:00", "pickupTime": "2019-06-05T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77395, "name": "CK-204", "id": "CK-204", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-12T08:00:00.000000-05:00", "pickupTime": "2019-06-12T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77398, "name": "CK-205", "id": "CK-205", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-19T08:00:00.000000-05:00", "pickupTime": "2019-06-19T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77401, "name": "CK-206", "id": "CK-206", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-26T08:00:00.000000-05:00", "pickupTime": "2019-06-26T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77404, "name": "CK-207", "id": "CK-207", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-03T08:00:00.000000-05:00", "pickupTime": "2019-07-03T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77407, "name": "CK-208", "id": "CK-208", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-10T08:00:00.000000-05:00", "pickupTime": "2019-07-10T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77410, "name": "CK-209", "id": "CK-209", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-17T08:00:00.000000-05:00", "pickupTime": "2019-07-17T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77413, "name": "CK-210", "id": "CK-210", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-24T08:00:00.000000-05:00", "pickupTime": "2019-07-24T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77416, "name": "CK-211", "id": "CK-211", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-31T08:00:00.000000-05:00", "pickupTime": "2019-07-31T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77419, "name": "CK-212", "id": "CK-212", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-07T08:00:00.000000-05:00", "pickupTime": "2019-08-07T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77422, "name": "CK-213", "id": "CK-213", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-14T08:00:00.000000-05:00", "pickupTime": "2019-08-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77425, "name": "CK-214", "id": "CK-214", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-21T08:00:00.000000-05:00", "pickupTime": "2019-08-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77428, "name": "CK-215", "id": "CK-215", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-28T08:00:00.000000-05:00", "pickupTime": "2019-08-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77431, "name": "CK-216", "id": "CK-216", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-04T08:00:00.000000-05:00", "pickupTime": "2019-09-04T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77434, "name": "CK-217", "id": "CK-217", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-11T08:00:00.000000-05:00", "pickupTime": "2019-09-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77437, "name": "CK-218", "id": "CK-218", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-18T08:00:00.000000-05:00", "pickupTime": "2019-09-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77440, "name": "CK-219", "id": "CK-219", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-25T08:00:00.000000-05:00", "pickupTime": "2019-09-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77443, "name": "CK-220", "id": "CK-220", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-02T08:00:00.000000-05:00", "pickupTime": "2019-10-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77446, "name": "CK-221", "id": "CK-221", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-09T08:00:00.000000-05:00", "pickupTime": "2019-10-09T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77449, "name": "CK-222", "id": "CK-222", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-16T08:00:00.000000-05:00", "pickupTime": "2019-10-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77453, "name": "CK-223", "id": "CK-223", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-23T08:00:00.000000-05:00", "pickupTime": "2019-10-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77456, "name": "CK-224", "id": "CK-224", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-30T08:00:00.000000-05:00", "pickupTime": "2019-10-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77459, "name": "CK-225", "id": "CK-225", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-06T08:00:00.000000-06:00", "pickupTime": "2019-11-06T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77463, "name": "CK-226", "id": "CK-226", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-13T08:00:00.000000-06:00", "pickupTime": "2019-11-13T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77466, "name": "CK-227", "id": "CK-227", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-20T08:00:00.000000-06:00", "pickupTime": "2019-11-20T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77469, "name": "CK-228", "id": "CK-228", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-27T08:00:00.000000-06:00", "pickupTime": "2019-11-27T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77472, "name": "CK-229", "id": "CK-229", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-04T08:00:00.000000-06:00", "pickupTime": "2019-12-04T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77475, "name": "CK-230", "id": "CK-230", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-11T08:00:00.000000-06:00", "pickupTime": "2019-12-11T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77478, "name": "CK-231", "id": "CK-231", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-18T08:00:00.000000-06:00", "pickupTime": "2019-12-18T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77481, "name": "CK-232", "id": "CK-232", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-25T08:00:00.000000-06:00", "pickupTime": "2019-12-25T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77500, "name": "CK-233", "id": "CK-233", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-03T08:00:00.000000-06:00", "pickupTime": "2019-01-03T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77503, "name": "CK-234", "id": "CK-234", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-10T08:00:00.000000-06:00", "pickupTime": "2019-01-10T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77506, "name": "CK-235", "id": "CK-235", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-17T08:00:00.000000-06:00", "pickupTime": "2019-01-17T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77509, "name": "CK-236", "id": "CK-236", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-24T08:00:00.000000-06:00", "pickupTime": "2019-01-24T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77512, "name": "CK-237", "id": "CK-237", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-31T08:00:00.000000-06:00", "pickupTime": "2019-01-31T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77515, "name": "CK-238", "id": "CK-238", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-07T08:00:00.000000-06:00", "pickupTime": "2019-02-07T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77518, "name": "CK-239", "id": "CK-239", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-14T08:00:00.000000-06:00", "pickupTime": "2019-02-14T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77521, "name": "CK-240", "id": "CK-240", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-21T08:00:00.000000-06:00", "pickupTime": "2019-02-21T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77524, "name": "CK-241", "id": "CK-241", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-28T08:00:00.000000-06:00", "pickupTime": "2019-02-28T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77527, "name": "CK-242", "id": "CK-242", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-07T08:00:00.000000-06:00", "pickupTime": "2019-03-07T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77530, "name": "CK-243", "id": "CK-243", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-14T08:00:00.000000-05:00", "pickupTime": "2019-03-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77533, "name": "CK-244", "id": "CK-244", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-21T08:00:00.000000-05:00", "pickupTime": "2019-03-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77536, "name": "CK-245", "id": "CK-245", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-28T08:00:00.000000-05:00", "pickupTime": "2019-03-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77539, "name": "CK-246", "id": "CK-246", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-04T08:00:00.000000-05:00", "pickupTime": "2019-04-04T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77543, "name": "CK-247", "id": "CK-247", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-11T08:00:00.000000-05:00", "pickupTime": "2019-04-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77547, "name": "CK-248", "id": "CK-248", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-18T08:00:00.000000-05:00", "pickupTime": "2019-04-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77550, "name": "CK-249", "id": "CK-249", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-25T08:00:00.000000-05:00", "pickupTime": "2019-04-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77553, "name": "CK-250", "id": "CK-250", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-02T08:00:00.000000-05:00", "pickupTime": "2019-05-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77556, "name": "CK-251", "id": "CK-251", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-09T08:00:00.000000-05:00", "pickupTime": "2019-05-09T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77559, "name": "CK-252", "id": "CK-252", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-16T08:00:00.000000-05:00", "pickupTime": "2019-05-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77562, "name": "CK-253", "id": "CK-253", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-23T08:00:00.000000-05:00", "pickupTime": "2019-05-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77566, "name": "CK-254", "id": "CK-254", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-30T08:00:00.000000-05:00", "pickupTime": "2019-05-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77569, "name": "CK-255", "id": "CK-255", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-06T08:00:00.000000-05:00", "pickupTime": "2019-06-06T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77572, "name": "CK-256", "id": "CK-256", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-13T08:00:00.000000-05:00", "pickupTime": "2019-06-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77576, "name": "CK-257", "id": "CK-257", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-20T08:00:00.000000-05:00", "pickupTime": "2019-06-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77579, "name": "CK-258", "id": "CK-258", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-27T08:00:00.000000-05:00", "pickupTime": "2019-06-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77582, "name": "CK-259", "id": "CK-259", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-04T08:00:00.000000-05:00", "pickupTime": "2019-07-04T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77585, "name": "CK-260", "id": "CK-260", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-11T08:00:00.000000-05:00", "pickupTime": "2019-07-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77588, "name": "CK-261", "id": "CK-261", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-18T08:00:00.000000-05:00", "pickupTime": "2019-07-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77591, "name": "CK-262", "id": "CK-262", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-25T08:00:00.000000-05:00", "pickupTime": "2019-07-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77594, "name": "CK-263", "id": "CK-263", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-01T08:00:00.000000-05:00", "pickupTime": "2019-08-01T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77597, "name": "CK-264", "id": "CK-264", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-08T08:00:00.000000-05:00", "pickupTime": "2019-08-08T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77600, "name": "CK-265", "id": "CK-265", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-15T08:00:00.000000-05:00", "pickupTime": "2019-08-15T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77603, "name": "CK-266", "id": "CK-266", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-22T08:00:00.000000-05:00", "pickupTime": "2019-08-22T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77606, "name": "CK-267", "id": "CK-267", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-29T08:00:00.000000-05:00", "pickupTime": "2019-08-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77609, "name": "CK-268", "id": "CK-268", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-05T08:00:00.000000-05:00", "pickupTime": "2019-09-05T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77612, "name": "CK-269", "id": "CK-269", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-12T08:00:00.000000-05:00", "pickupTime": "2019-09-12T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77615, "name": "CK-270", "id": "CK-270", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-19T08:00:00.000000-05:00", "pickupTime": "2019-09-19T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77618, "name": "CK-271", "id": "CK-271", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-26T08:00:00.000000-05:00", "pickupTime": "2019-09-26T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77621, "name": "CK-272", "id": "CK-272", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-03T08:00:00.000000-05:00", "pickupTime": "2019-10-03T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77624, "name": "CK-273", "id": "CK-273", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-10T08:00:00.000000-05:00", "pickupTime": "2019-10-10T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77627, "name": "CK-274", "id": "CK-274", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-17T08:00:00.000000-05:00", "pickupTime": "2019-10-17T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77630, "name": "CK-275", "id": "CK-275", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-24T08:00:00.000000-05:00", "pickupTime": "2019-10-24T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77633, "name": "CK-276", "id": "CK-276", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-31T08:00:00.000000-05:00", "pickupTime": "2019-10-31T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77636, "name": "CK-277", "id": "CK-277", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-07T08:00:00.000000-06:00", "pickupTime": "2019-11-07T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77639, "name": "CK-278", "id": "CK-278", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-14T08:00:00.000000-06:00", "pickupTime": "2019-11-14T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77642, "name": "CK-279", "id": "CK-279", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-21T08:00:00.000000-06:00", "pickupTime": "2019-11-21T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77645, "name": "CK-280", "id": "CK-280", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-28T08:00:00.000000-06:00", "pickupTime": "2019-11-28T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77648, "name": "CK-281", "id": "CK-281", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-05T08:00:00.000000-06:00", "pickupTime": "2019-12-05T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77651, "name": "CK-282", "id": "CK-282", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-12T08:00:00.000000-06:00", "pickupTime": "2019-12-12T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77654, "name": "CK-283", "id": "CK-283", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-19T08:00:00.000000-06:00", "pickupTime": "2019-12-19T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77657, "name": "CK-284", "id": "CK-284", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-26T08:00:00.000000-06:00", "pickupTime": "2019-12-26T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77678, "name": "CK-285", "id": "CK-285", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-04T08:00:00.000000-06:00", "pickupTime": "2019-01-04T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77681, "name": "CK-286", "id": "CK-286", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-11T08:00:00.000000-06:00", "pickupTime": "2019-01-11T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77684, "name": "CK-287", "id": "CK-287", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-18T08:00:00.000000-06:00", "pickupTime": "2019-01-18T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77690, "name": "CK-288", "id": "CK-288", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-25T08:00:00.000000-06:00", "pickupTime": "2019-01-25T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77693, "name": "CK-289", "id": "CK-289", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-01T08:00:00.000000-06:00", "pickupTime": "2019-02-01T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77696, "name": "CK-290", "id": "CK-290", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-08T08:00:00.000000-06:00", "pickupTime": "2019-02-08T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77700, "name": "CK-291", "id": "CK-291", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-15T08:00:00.000000-06:00", "pickupTime": "2019-02-15T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77703, "name": "CK-292", "id": "CK-292", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-22T08:00:00.000000-06:00", "pickupTime": "2019-02-22T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77707, "name": "CK-293", "id": "CK-293", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-01T08:00:00.000000-06:00", "pickupTime": "2019-03-01T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77710, "name": "CK-294", "id": "CK-294", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-08T08:00:00.000000-06:00", "pickupTime": "2019-03-08T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77713, "name": "CK-295", "id": "CK-295", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-15T08:00:00.000000-05:00", "pickupTime": "2019-03-15T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77716, "name": "CK-296", "id": "CK-296", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-22T08:00:00.000000-05:00", "pickupTime": "2019-03-22T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77719, "name": "CK-297", "id": "CK-297", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-29T08:00:00.000000-05:00", "pickupTime": "2019-03-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77722, "name": "CK-298", "id": "CK-298", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-05T08:00:00.000000-05:00", "pickupTime": "2019-04-05T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77725, "name": "CK-299", "id": "CK-299", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-12T08:00:00.000000-05:00", "pickupTime": "2019-04-12T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77728, "name": "CK-300", "id": "CK-300", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-19T08:00:00.000000-05:00", "pickupTime": "2019-04-19T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77731, "name": "CK-301", "id": "CK-301", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-26T08:00:00.000000-05:00", "pickupTime": "2019-04-26T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77734, "name": "CK-302", "id": "CK-302", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-03T08:00:00.000000-05:00", "pickupTime": "2019-05-03T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77737, "name": "CK-303", "id": "CK-303", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-10T08:00:00.000000-05:00", "pickupTime": "2019-05-10T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77740, "name": "CK-304", "id": "CK-304", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-17T08:00:00.000000-05:00", "pickupTime": "2019-05-17T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77743, "name": "CK-305", "id": "CK-305", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-24T08:00:00.000000-05:00", "pickupTime": "2019-05-24T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77746, "name": "CK-306", "id": "CK-306", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-31T08:00:00.000000-05:00", "pickupTime": "2019-05-31T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77749, "name": "CK-307", "id": "CK-307", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-07T08:00:00.000000-05:00", "pickupTime": "2019-06-07T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77752, "name": "CK-308", "id": "CK-308", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-14T08:00:00.000000-05:00", "pickupTime": "2019-06-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77755, "name": "CK-309", "id": "CK-309", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-21T08:00:00.000000-05:00", "pickupTime": "2019-06-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77758, "name": "CK-310", "id": "CK-310", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-28T08:00:00.000000-05:00", "pickupTime": "2019-06-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77761, "name": "CK-311", "id": "CK-311", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-05T08:00:00.000000-05:00", "pickupTime": "2019-07-05T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77764, "name": "CK-312", "id": "CK-312", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-12T08:00:00.000000-05:00", "pickupTime": "2019-07-12T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77767, "name": "CK-313", "id": "CK-313", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-19T08:00:00.000000-05:00", "pickupTime": "2019-07-19T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77770, "name": "CK-314", "id": "CK-314", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-26T08:00:00.000000-05:00", "pickupTime": "2019-07-26T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77773, "name": "CK-315", "id": "CK-315", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-02T08:00:00.000000-05:00", "pickupTime": "2019-08-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77776, "name": "CK-316", "id": "CK-316", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-09T08:00:00.000000-05:00", "pickupTime": "2019-08-09T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77779, "name": "CK-317", "id": "CK-317", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-16T08:00:00.000000-05:00", "pickupTime": "2019-08-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77782, "name": "CK-318", "id": "CK-318", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T08:00:00.000000-05:00", "pickupTime": "2019-08-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77785, "name": "CK-319", "id": "CK-319", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-30T08:00:00.000000-05:00", "pickupTime": "2019-08-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77788, "name": "CK-320", "id": "CK-320", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-06T08:00:00.000000-05:00", "pickupTime": "2019-09-06T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77791, "name": "CK-321", "id": "CK-321", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-13T08:00:00.000000-05:00", "pickupTime": "2019-09-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77794, "name": "CK-322", "id": "CK-322", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-20T08:00:00.000000-05:00", "pickupTime": "2019-09-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77797, "name": "CK-323", "id": "CK-323", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-27T08:00:00.000000-05:00", "pickupTime": "2019-09-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77801, "name": "CK-324", "id": "CK-324", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-04T08:00:00.000000-05:00", "pickupTime": "2019-10-04T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77804, "name": "CK-325", "id": "CK-325", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-11T08:00:00.000000-05:00", "pickupTime": "2019-10-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77807, "name": "CK-326", "id": "CK-326", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-18T08:00:00.000000-05:00", "pickupTime": "2019-10-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77811, "name": "CK-327", "id": "CK-327", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-25T08:00:00.000000-05:00", "pickupTime": "2019-10-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77814, "name": "CK-328", "id": "CK-328", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-01T08:00:00.000000-05:00", "pickupTime": "2019-11-01T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77817, "name": "CK-329", "id": "CK-329", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-08T08:00:00.000000-06:00", "pickupTime": "2019-11-08T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77820, "name": "CK-330", "id": "CK-330", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-15T08:00:00.000000-06:00", "pickupTime": "2019-11-15T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77823, "name": "CK-331", "id": "CK-331", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-22T08:00:00.000000-06:00", "pickupTime": "2019-11-22T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77826, "name": "CK-332", "id": "CK-332", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-29T08:00:00.000000-06:00", "pickupTime": "2019-11-29T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77829, "name": "CK-333", "id": "CK-333", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-06T08:00:00.000000-06:00", "pickupTime": "2019-12-06T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77832, "name": "CK-334", "id": "CK-334", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-13T08:00:00.000000-06:00", "pickupTime": "2019-12-13T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77835, "name": "CK-335", "id": "CK-335", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-20T08:00:00.000000-06:00", "pickupTime": "2019-12-20T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77838, "name": "CK-336", "id": "CK-336", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-27T08:00:00.000000-06:00", "pickupTime": "2019-12-27T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77862, "name": "CK-337", "id": "CK-337", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-05T08:00:00.000000-06:00", "pickupTime": "2019-01-05T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77865, "name": "CK-338", "id": "CK-338", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-12T08:00:00.000000-06:00", "pickupTime": "2019-01-12T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77868, "name": "CK-339", "id": "CK-339", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-19T08:00:00.000000-06:00", "pickupTime": "2019-01-19T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77871, "name": "CK-340", "id": "CK-340", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-01-26T08:00:00.000000-06:00", "pickupTime": "2019-01-26T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77874, "name": "CK-341", "id": "CK-341", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-02T08:00:00.000000-06:00", "pickupTime": "2019-02-02T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77877, "name": "CK-342", "id": "CK-342", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-09T08:00:00.000000-06:00", "pickupTime": "2019-02-09T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77880, "name": "CK-343", "id": "CK-343", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-16T08:00:00.000000-06:00", "pickupTime": "2019-02-16T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77883, "name": "CK-344", "id": "CK-344", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-23T08:00:00.000000-06:00", "pickupTime": "2019-02-23T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77886, "name": "CK-345", "id": "CK-345", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-02T08:00:00.000000-06:00", "pickupTime": "2019-03-02T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77889, "name": "CK-346", "id": "CK-346", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-09T08:00:00.000000-06:00", "pickupTime": "2019-03-09T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77892, "name": "CK-347", "id": "CK-347", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-16T08:00:00.000000-05:00", "pickupTime": "2019-03-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77895, "name": "CK-348", "id": "CK-348", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-23T08:00:00.000000-05:00", "pickupTime": "2019-03-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77898, "name": "CK-349", "id": "CK-349", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-03-30T08:00:00.000000-05:00", "pickupTime": "2019-03-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77901, "name": "CK-350", "id": "CK-350", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-06T08:00:00.000000-05:00", "pickupTime": "2019-04-06T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77904, "name": "CK-351", "id": "CK-351", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-13T08:00:00.000000-05:00", "pickupTime": "2019-04-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77907, "name": "CK-352", "id": "CK-352", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-20T08:00:00.000000-05:00", "pickupTime": "2019-04-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77910, "name": "CK-353", "id": "CK-353", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-04-27T08:00:00.000000-05:00", "pickupTime": "2019-04-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77913, "name": "CK-354", "id": "CK-354", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-04T08:00:00.000000-05:00", "pickupTime": "2019-05-04T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77916, "name": "CK-355", "id": "CK-355", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-11T08:00:00.000000-05:00", "pickupTime": "2019-05-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77919, "name": "CK-356", "id": "CK-356", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-18T08:00:00.000000-05:00", "pickupTime": "2019-05-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77922, "name": "CK-357", "id": "CK-357", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-05-25T08:00:00.000000-05:00", "pickupTime": "2019-05-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77925, "name": "CK-358", "id": "CK-358", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-01T08:00:00.000000-05:00", "pickupTime": "2019-06-01T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77928, "name": "CK-359", "id": "CK-359", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-08T08:00:00.000000-05:00", "pickupTime": "2019-06-08T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77931, "name": "CK-360", "id": "CK-360", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-15T08:00:00.000000-05:00", "pickupTime": "2019-06-15T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77934, "name": "CK-361", "id": "CK-361", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-22T08:00:00.000000-05:00", "pickupTime": "2019-06-22T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77937, "name": "CK-362", "id": "CK-362", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-06-29T08:00:00.000000-05:00", "pickupTime": "2019-06-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77940, "name": "CK-363", "id": "CK-363", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-06T08:00:00.000000-05:00", "pickupTime": "2019-07-06T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77943, "name": "CK-364", "id": "CK-364", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-13T08:00:00.000000-05:00", "pickupTime": "2019-07-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77946, "name": "CK-365", "id": "CK-365", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-20T08:00:00.000000-05:00", "pickupTime": "2019-07-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77949, "name": "CK-366", "id": "CK-366", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-07-27T08:00:00.000000-05:00", "pickupTime": "2019-07-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77952, "name": "CK-367", "id": "CK-367", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-03T08:00:00.000000-05:00", "pickupTime": "2019-08-03T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77955, "name": "CK-368", "id": "CK-368", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-10T08:00:00.000000-05:00", "pickupTime": "2019-08-10T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77958, "name": "CK-369", "id": "CK-369", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-17T08:00:00.000000-05:00", "pickupTime": "2019-08-17T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77961, "name": "CK-370", "id": "CK-370", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-24T08:00:00.000000-05:00", "pickupTime": "2019-08-24T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77964, "name": "CK-371", "id": "CK-371", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-31T08:00:00.000000-05:00", "pickupTime": "2019-08-31T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77967, "name": "CK-372", "id": "CK-372", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-07T08:00:00.000000-05:00", "pickupTime": "2019-09-07T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77971, "name": "CK-373", "id": "CK-373", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-14T08:00:00.000000-05:00", "pickupTime": "2019-09-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77974, "name": "CK-374", "id": "CK-374", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-21T08:00:00.000000-05:00", "pickupTime": "2019-09-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77977, "name": "CK-375", "id": "CK-375", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-28T08:00:00.000000-05:00", "pickupTime": "2019-09-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77980, "name": "CK-376", "id": "CK-376", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-05T08:00:00.000000-05:00", "pickupTime": "2019-10-05T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77983, "name": "CK-377", "id": "CK-377", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-12T08:00:00.000000-05:00", "pickupTime": "2019-10-12T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77986, "name": "CK-378", "id": "CK-378", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-19T08:00:00.000000-05:00", "pickupTime": "2019-10-19T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77989, "name": "CK-379", "id": "CK-379", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-26T08:00:00.000000-05:00", "pickupTime": "2019-10-26T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77992, "name": "CK-380", "id": "CK-380", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-02T08:00:00.000000-05:00", "pickupTime": "2019-11-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77995, "name": "CK-381", "id": "CK-381", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-09T08:00:00.000000-06:00", "pickupTime": "2019-11-09T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 77998, "name": "CK-382", "id": "CK-382", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-16T08:00:00.000000-06:00", "pickupTime": "2019-11-16T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 78001, "name": "CK-383", "id": "CK-383", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-23T08:00:00.000000-06:00", "pickupTime": "2019-11-23T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 78004, "name": "CK-384", "id": "CK-384", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-30T08:00:00.000000-06:00", "pickupTime": "2019-11-30T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 78007, "name": "CK-385", "id": "CK-385", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-07T08:00:00.000000-06:00", "pickupTime": "2019-12-07T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 78010, "name": "CK-386", "id": "CK-386", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-14T08:00:00.000000-06:00", "pickupTime": "2019-12-14T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 78013, "name": "CK-387", "id": "CK-387", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-21T08:00:00.000000-06:00", "pickupTime": "2019-12-21T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 78016, "name": "CK-388", "id": "CK-388", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-28T08:00:00.000000-06:00", "pickupTime": "2019-12-28T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 102753, "name": "CK-393", "id": "CK-393", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2018-10-05T13:03:54.769248-05:00", "pickupTime": "2018-10-05T13:03:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 102941, "name": "CK-394", "id": "CK-394", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-10-06T18:00:00.000000-05:00", "pickupTime": "2018-10-06T16:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 103012, "name": "CK-395", "id": "CK-395", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2018-10-05T13:24:22.752179-05:00", "pickupTime": "2018-10-05T13:09:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 103209, "name": "CK-396", "id": "CK-396", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2018-10-07T18:00:00.000000-05:00", "pickupTime": "2018-10-07T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 148262, "name": "CK-398", "id": "CK-398", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2019-02-26T08:25:17.200093-06:00", "pickupTime": "2019-02-26T08:13:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 148352, "name": "CK-399", "id": "CK-399", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2019-02-27T10:45:23.161515-06:00", "pickupTime": "2019-02-26T08:05:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 148467, "name": "CK-400", "id": "CK-400", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2019-02-26T11:00:49.370850-06:00", "pickupTime": "2019-02-26T08:20:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 148563, "name": "CK-401", "id": "CK-401", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2019-02-26T11:00:49.617831-06:00", "pickupTime": "2019-02-26T08:25:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4557, "name": "Joel Hodgson", "userid": "sol3", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 148624, "name": "CK-402", "id": "CK-402", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2019-02-26T08:22:48.009767-06:00", "pickupTime": "2019-02-26T08:12:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 148688, "name": "CK-403", "id": "CK-403", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-26T11:00:00.000000-06:00", "pickupTime": "2019-02-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 148788, "name": "CK-404", "id": "CK-404", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2019-02-27T10:45:15.677643-06:00", "pickupTime": "2019-02-26T08:14:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 161514, "name": "CK-405", "id": "CK-405", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2019-02-27T10:53:46.190925-06:00", "pickupTime": "2019-02-27T10:49:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": "bavaria germany" }, { "_class": "allocation", "oid": 161614, "name": "CK-406", "id": "CK-406", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-02-28T11:00:00.000000-06:00", "pickupTime": "2019-02-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": "I don't have polls for that" }, { "_class": "allocation", "oid": 215509, "name": "CK-408", "id": "CK-408", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T11:00:00.000000-05:00", "pickupTime": "2019-08-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215740, "name": "CK-448", "id": "CK-448", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T11:00:00.000000-05:00", "pickupTime": "2019-09-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215744, "name": "CK-449", "id": "CK-449", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T11:00:00.000000-05:00", "pickupTime": "2019-09-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215747, "name": "CK-450", "id": "CK-450", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T11:00:00.000000-05:00", "pickupTime": "2019-09-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215750, "name": "CK-451", "id": "CK-451", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T11:00:00.000000-05:00", "pickupTime": "2019-09-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215753, "name": "CK-452", "id": "CK-452", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T11:00:00.000000-05:00", "pickupTime": "2019-09-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215756, "name": "CK-453", "id": "CK-453", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T11:00:00.000000-05:00", "pickupTime": "2019-10-07T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215759, "name": "CK-454", "id": "CK-454", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T11:00:00.000000-05:00", "pickupTime": "2019-10-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215762, "name": "CK-455", "id": "CK-455", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T11:00:00.000000-05:00", "pickupTime": "2019-10-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215765, "name": "CK-456", "id": "CK-456", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T11:00:00.000000-05:00", "pickupTime": "2019-10-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215768, "name": "CK-457", "id": "CK-457", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T11:00:00.000000-06:00", "pickupTime": "2019-11-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215771, "name": "CK-458", "id": "CK-458", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T11:00:00.000000-06:00", "pickupTime": "2019-11-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215774, "name": "CK-459", "id": "CK-459", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T11:00:00.000000-06:00", "pickupTime": "2019-11-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215777, "name": "CK-460", "id": "CK-460", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T11:00:00.000000-06:00", "pickupTime": "2019-11-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215780, "name": "CK-461", "id": "CK-461", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-02T11:00:00.000000-06:00", "pickupTime": "2019-12-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215783, "name": "CK-462", "id": "CK-462", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-09T11:00:00.000000-06:00", "pickupTime": "2019-12-09T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215786, "name": "CK-463", "id": "CK-463", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-16T11:00:00.000000-06:00", "pickupTime": "2019-12-16T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215789, "name": "CK-464", "id": "CK-464", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-23T11:00:00.000000-06:00", "pickupTime": "2019-12-23T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 215792, "name": "CK-465", "id": "CK-465", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-30T11:00:00.000000-06:00", "pickupTime": "2019-12-30T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216117, "name": "CK-483", "id": "CK-483", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T14:00:00.000000-05:00", "pickupTime": "2019-08-23T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216131, "name": "CK-484", "id": "CK-484", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T14:00:00.000000-05:00", "pickupTime": "2019-09-02T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216135, "name": "CK-485", "id": "CK-485", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T14:00:00.000000-05:00", "pickupTime": "2019-09-09T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216139, "name": "CK-486", "id": "CK-486", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T14:00:00.000000-05:00", "pickupTime": "2019-09-16T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216143, "name": "CK-487", "id": "CK-487", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T14:00:00.000000-05:00", "pickupTime": "2019-09-23T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216147, "name": "CK-488", "id": "CK-488", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T14:00:00.000000-05:00", "pickupTime": "2019-09-30T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216151, "name": "CK-489", "id": "CK-489", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T14:00:00.000000-05:00", "pickupTime": "2019-10-07T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216155, "name": "CK-490", "id": "CK-490", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T14:00:00.000000-05:00", "pickupTime": "2019-10-14T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216159, "name": "CK-491", "id": "CK-491", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T14:00:00.000000-05:00", "pickupTime": "2019-10-21T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216163, "name": "CK-492", "id": "CK-492", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T14:00:00.000000-05:00", "pickupTime": "2019-10-28T12:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216167, "name": "CK-493", "id": "CK-493", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T14:00:00.000000-06:00", "pickupTime": "2019-11-04T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216171, "name": "CK-494", "id": "CK-494", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T14:00:00.000000-06:00", "pickupTime": "2019-11-11T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216175, "name": "CK-495", "id": "CK-495", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T14:00:00.000000-06:00", "pickupTime": "2019-11-18T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216179, "name": "CK-496", "id": "CK-496", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T14:00:00.000000-06:00", "pickupTime": "2019-11-25T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216183, "name": "CK-497", "id": "CK-497", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-02T14:00:00.000000-06:00", "pickupTime": "2019-12-02T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216187, "name": "CK-498", "id": "CK-498", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-09T14:00:00.000000-06:00", "pickupTime": "2019-12-09T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216191, "name": "CK-499", "id": "CK-499", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-16T14:00:00.000000-06:00", "pickupTime": "2019-12-16T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216195, "name": "CK-500", "id": "CK-500", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-23T14:00:00.000000-06:00", "pickupTime": "2019-12-23T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216199, "name": "CK-501", "id": "CK-501", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-30T14:00:00.000000-06:00", "pickupTime": "2019-12-30T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 216671, "name": "CK-519", "id": "CK-519", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T11:00:00.000000-05:00", "pickupTime": "2019-08-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216720, "name": "CK-520", "id": "CK-520", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T11:00:00.000000-05:00", "pickupTime": "2019-09-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216723, "name": "CK-521", "id": "CK-521", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T11:00:00.000000-05:00", "pickupTime": "2019-09-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216726, "name": "CK-522", "id": "CK-522", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T11:00:00.000000-05:00", "pickupTime": "2019-09-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216729, "name": "CK-523", "id": "CK-523", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T11:00:00.000000-05:00", "pickupTime": "2019-09-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216732, "name": "CK-524", "id": "CK-524", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T11:00:00.000000-05:00", "pickupTime": "2019-09-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216735, "name": "CK-525", "id": "CK-525", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T11:00:00.000000-05:00", "pickupTime": "2019-10-07T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216738, "name": "CK-526", "id": "CK-526", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T11:00:00.000000-05:00", "pickupTime": "2019-10-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216741, "name": "CK-527", "id": "CK-527", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T11:00:00.000000-05:00", "pickupTime": "2019-10-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216744, "name": "CK-528", "id": "CK-528", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T11:00:00.000000-05:00", "pickupTime": "2019-10-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216747, "name": "CK-529", "id": "CK-529", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T11:00:00.000000-06:00", "pickupTime": "2019-11-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216750, "name": "CK-530", "id": "CK-530", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T11:00:00.000000-06:00", "pickupTime": "2019-11-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216754, "name": "CK-531", "id": "CK-531", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T11:00:00.000000-06:00", "pickupTime": "2019-11-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216757, "name": "CK-532", "id": "CK-532", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T11:00:00.000000-06:00", "pickupTime": "2019-11-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216760, "name": "CK-533", "id": "CK-533", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-02T11:00:00.000000-06:00", "pickupTime": "2019-12-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216763, "name": "CK-534", "id": "CK-534", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-09T11:00:00.000000-06:00", "pickupTime": "2019-12-09T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216766, "name": "CK-535", "id": "CK-535", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-16T11:00:00.000000-06:00", "pickupTime": "2019-12-16T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216769, "name": "CK-536", "id": "CK-536", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-23T11:00:00.000000-06:00", "pickupTime": "2019-12-23T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216772, "name": "CK-537", "id": "CK-537", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-30T11:00:00.000000-06:00", "pickupTime": "2019-12-30T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216775, "name": "CK-538", "id": "CK-538", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-06T11:00:00.000000-06:00", "pickupTime": "2020-01-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216778, "name": "CK-539", "id": "CK-539", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-13T11:00:00.000000-06:00", "pickupTime": "2020-01-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216781, "name": "CK-540", "id": "CK-540", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-20T11:00:00.000000-06:00", "pickupTime": "2020-01-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216784, "name": "CK-541", "id": "CK-541", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-27T11:00:00.000000-06:00", "pickupTime": "2020-01-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216787, "name": "CK-542", "id": "CK-542", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-03T11:00:00.000000-06:00", "pickupTime": "2020-02-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216790, "name": "CK-543", "id": "CK-543", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-10T11:00:00.000000-06:00", "pickupTime": "2020-02-10T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216793, "name": "CK-544", "id": "CK-544", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-17T11:00:00.000000-06:00", "pickupTime": "2020-02-17T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216796, "name": "CK-545", "id": "CK-545", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-24T11:00:00.000000-06:00", "pickupTime": "2020-02-24T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216799, "name": "CK-546", "id": "CK-546", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-02T11:00:00.000000-06:00", "pickupTime": "2020-03-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216802, "name": "CK-547", "id": "CK-547", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-09T11:00:00.000000-05:00", "pickupTime": "2020-03-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216805, "name": "CK-548", "id": "CK-548", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-16T11:00:00.000000-05:00", "pickupTime": "2020-03-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216808, "name": "CK-549", "id": "CK-549", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-23T11:00:00.000000-05:00", "pickupTime": "2020-03-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216811, "name": "CK-550", "id": "CK-550", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-30T11:00:00.000000-05:00", "pickupTime": "2020-03-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216814, "name": "CK-551", "id": "CK-551", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-06T11:00:00.000000-05:00", "pickupTime": "2020-04-06T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216817, "name": "CK-552", "id": "CK-552", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-13T11:00:00.000000-05:00", "pickupTime": "2020-04-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216820, "name": "CK-553", "id": "CK-553", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-20T11:00:00.000000-05:00", "pickupTime": "2020-04-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216823, "name": "CK-554", "id": "CK-554", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-27T11:00:00.000000-05:00", "pickupTime": "2020-04-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216833, "name": "CK-555", "id": "CK-555", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T11:00:00.000000-05:00", "pickupTime": "2019-09-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216836, "name": "CK-556", "id": "CK-556", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T11:00:00.000000-05:00", "pickupTime": "2019-09-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216839, "name": "CK-557", "id": "CK-557", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T11:00:00.000000-05:00", "pickupTime": "2019-09-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216842, "name": "CK-558", "id": "CK-558", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T11:00:00.000000-05:00", "pickupTime": "2019-09-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216845, "name": "CK-559", "id": "CK-559", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-01T11:00:00.000000-05:00", "pickupTime": "2019-10-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216848, "name": "CK-560", "id": "CK-560", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-08T11:00:00.000000-05:00", "pickupTime": "2019-10-08T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216851, "name": "CK-561", "id": "CK-561", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-15T11:00:00.000000-05:00", "pickupTime": "2019-10-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216854, "name": "CK-562", "id": "CK-562", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-22T11:00:00.000000-05:00", "pickupTime": "2019-10-22T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216857, "name": "CK-563", "id": "CK-563", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-29T11:00:00.000000-05:00", "pickupTime": "2019-10-29T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216860, "name": "CK-564", "id": "CK-564", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-05T11:00:00.000000-06:00", "pickupTime": "2019-11-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216863, "name": "CK-565", "id": "CK-565", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-12T11:00:00.000000-06:00", "pickupTime": "2019-11-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216866, "name": "CK-566", "id": "CK-566", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-19T11:00:00.000000-06:00", "pickupTime": "2019-11-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216869, "name": "CK-567", "id": "CK-567", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-26T11:00:00.000000-06:00", "pickupTime": "2019-11-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216872, "name": "CK-568", "id": "CK-568", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-03T11:00:00.000000-06:00", "pickupTime": "2019-12-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216875, "name": "CK-569", "id": "CK-569", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-10T11:00:00.000000-06:00", "pickupTime": "2019-12-10T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216878, "name": "CK-570", "id": "CK-570", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-17T11:00:00.000000-06:00", "pickupTime": "2019-12-17T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216881, "name": "CK-571", "id": "CK-571", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-24T11:00:00.000000-06:00", "pickupTime": "2019-12-24T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216884, "name": "CK-572", "id": "CK-572", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-31T11:00:00.000000-06:00", "pickupTime": "2019-12-31T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216887, "name": "CK-573", "id": "CK-573", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-07T11:00:00.000000-06:00", "pickupTime": "2020-01-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216890, "name": "CK-574", "id": "CK-574", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-14T11:00:00.000000-06:00", "pickupTime": "2020-01-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216893, "name": "CK-575", "id": "CK-575", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-21T11:00:00.000000-06:00", "pickupTime": "2020-01-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216896, "name": "CK-576", "id": "CK-576", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-28T11:00:00.000000-06:00", "pickupTime": "2020-01-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216899, "name": "CK-577", "id": "CK-577", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-04T11:00:00.000000-06:00", "pickupTime": "2020-02-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216902, "name": "CK-578", "id": "CK-578", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-11T11:00:00.000000-06:00", "pickupTime": "2020-02-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216905, "name": "CK-579", "id": "CK-579", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-18T11:00:00.000000-06:00", "pickupTime": "2020-02-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216908, "name": "CK-580", "id": "CK-580", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-25T11:00:00.000000-06:00", "pickupTime": "2020-02-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216911, "name": "CK-581", "id": "CK-581", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-03T11:00:00.000000-06:00", "pickupTime": "2020-03-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216914, "name": "CK-582", "id": "CK-582", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-10T11:00:00.000000-05:00", "pickupTime": "2020-03-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216917, "name": "CK-583", "id": "CK-583", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-17T11:00:00.000000-05:00", "pickupTime": "2020-03-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216920, "name": "CK-584", "id": "CK-584", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-24T11:00:00.000000-05:00", "pickupTime": "2020-03-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216923, "name": "CK-585", "id": "CK-585", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-31T11:00:00.000000-05:00", "pickupTime": "2020-03-31T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216926, "name": "CK-586", "id": "CK-586", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-07T11:00:00.000000-05:00", "pickupTime": "2020-04-07T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216929, "name": "CK-587", "id": "CK-587", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-14T11:00:00.000000-05:00", "pickupTime": "2020-04-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216932, "name": "CK-588", "id": "CK-588", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-21T11:00:00.000000-05:00", "pickupTime": "2020-04-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216935, "name": "CK-589", "id": "CK-589", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-28T11:00:00.000000-05:00", "pickupTime": "2020-04-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216946, "name": "CK-590", "id": "CK-590", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-04T11:00:00.000000-05:00", "pickupTime": "2019-09-04T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216949, "name": "CK-591", "id": "CK-591", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-11T11:00:00.000000-05:00", "pickupTime": "2019-09-11T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216952, "name": "CK-592", "id": "CK-592", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-18T11:00:00.000000-05:00", "pickupTime": "2019-09-18T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216955, "name": "CK-593", "id": "CK-593", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-25T11:00:00.000000-05:00", "pickupTime": "2019-09-25T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216958, "name": "CK-594", "id": "CK-594", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-02T11:00:00.000000-05:00", "pickupTime": "2019-10-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216961, "name": "CK-595", "id": "CK-595", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-09T11:00:00.000000-05:00", "pickupTime": "2019-10-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216964, "name": "CK-596", "id": "CK-596", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-16T11:00:00.000000-05:00", "pickupTime": "2019-10-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216967, "name": "CK-597", "id": "CK-597", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-23T11:00:00.000000-05:00", "pickupTime": "2019-10-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216970, "name": "CK-598", "id": "CK-598", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-30T11:00:00.000000-05:00", "pickupTime": "2019-10-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216973, "name": "CK-599", "id": "CK-599", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-06T11:00:00.000000-06:00", "pickupTime": "2019-11-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216976, "name": "CK-600", "id": "CK-600", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-13T11:00:00.000000-06:00", "pickupTime": "2019-11-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216979, "name": "CK-601", "id": "CK-601", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-20T11:00:00.000000-06:00", "pickupTime": "2019-11-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216982, "name": "CK-602", "id": "CK-602", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-27T11:00:00.000000-06:00", "pickupTime": "2019-11-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216985, "name": "CK-603", "id": "CK-603", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-04T11:00:00.000000-06:00", "pickupTime": "2019-12-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216988, "name": "CK-604", "id": "CK-604", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-11T11:00:00.000000-06:00", "pickupTime": "2019-12-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216991, "name": "CK-605", "id": "CK-605", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-18T11:00:00.000000-06:00", "pickupTime": "2019-12-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216994, "name": "CK-606", "id": "CK-606", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-25T11:00:00.000000-06:00", "pickupTime": "2019-12-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 216997, "name": "CK-607", "id": "CK-607", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-01T11:00:00.000000-06:00", "pickupTime": "2020-01-01T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217000, "name": "CK-608", "id": "CK-608", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-08T11:00:00.000000-06:00", "pickupTime": "2020-01-08T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217004, "name": "CK-609", "id": "CK-609", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-15T11:00:00.000000-06:00", "pickupTime": "2020-01-15T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217007, "name": "CK-610", "id": "CK-610", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-22T11:00:00.000000-06:00", "pickupTime": "2020-01-22T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217010, "name": "CK-611", "id": "CK-611", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-29T11:00:00.000000-06:00", "pickupTime": "2020-01-29T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217013, "name": "CK-612", "id": "CK-612", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-05T11:00:00.000000-06:00", "pickupTime": "2020-02-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217016, "name": "CK-613", "id": "CK-613", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-12T11:00:00.000000-06:00", "pickupTime": "2020-02-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217019, "name": "CK-614", "id": "CK-614", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-19T11:00:00.000000-06:00", "pickupTime": "2020-02-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217022, "name": "CK-615", "id": "CK-615", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-26T11:00:00.000000-06:00", "pickupTime": "2020-02-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217025, "name": "CK-616", "id": "CK-616", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-04T11:00:00.000000-06:00", "pickupTime": "2020-03-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217028, "name": "CK-617", "id": "CK-617", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-11T11:00:00.000000-05:00", "pickupTime": "2020-03-11T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217031, "name": "CK-618", "id": "CK-618", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-18T11:00:00.000000-05:00", "pickupTime": "2020-03-18T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217034, "name": "CK-619", "id": "CK-619", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-25T11:00:00.000000-05:00", "pickupTime": "2020-03-25T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217037, "name": "CK-620", "id": "CK-620", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-01T11:00:00.000000-05:00", "pickupTime": "2020-04-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217040, "name": "CK-621", "id": "CK-621", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-08T11:00:00.000000-05:00", "pickupTime": "2020-04-08T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217043, "name": "CK-622", "id": "CK-622", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-15T11:00:00.000000-05:00", "pickupTime": "2020-04-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217046, "name": "CK-623", "id": "CK-623", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-22T11:00:00.000000-05:00", "pickupTime": "2020-04-22T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217049, "name": "CK-624", "id": "CK-624", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-29T11:00:00.000000-05:00", "pickupTime": "2020-04-29T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217063, "name": "CK-625", "id": "CK-625", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-05T11:00:00.000000-05:00", "pickupTime": "2019-09-05T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217066, "name": "CK-626", "id": "CK-626", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-12T11:00:00.000000-05:00", "pickupTime": "2019-09-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217069, "name": "CK-627", "id": "CK-627", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-19T11:00:00.000000-05:00", "pickupTime": "2019-09-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217072, "name": "CK-628", "id": "CK-628", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-26T11:00:00.000000-05:00", "pickupTime": "2019-09-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217075, "name": "CK-629", "id": "CK-629", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-03T11:00:00.000000-05:00", "pickupTime": "2019-10-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217078, "name": "CK-630", "id": "CK-630", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-10T11:00:00.000000-05:00", "pickupTime": "2019-10-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217081, "name": "CK-631", "id": "CK-631", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-17T11:00:00.000000-05:00", "pickupTime": "2019-10-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217084, "name": "CK-632", "id": "CK-632", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-24T11:00:00.000000-05:00", "pickupTime": "2019-10-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217087, "name": "CK-633", "id": "CK-633", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-31T11:00:00.000000-05:00", "pickupTime": "2019-10-31T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217090, "name": "CK-634", "id": "CK-634", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-07T11:00:00.000000-06:00", "pickupTime": "2019-11-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217093, "name": "CK-635", "id": "CK-635", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-14T11:00:00.000000-06:00", "pickupTime": "2019-11-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217096, "name": "CK-636", "id": "CK-636", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-21T11:00:00.000000-06:00", "pickupTime": "2019-11-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217099, "name": "CK-637", "id": "CK-637", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-28T11:00:00.000000-06:00", "pickupTime": "2019-11-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217102, "name": "CK-638", "id": "CK-638", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-05T11:00:00.000000-06:00", "pickupTime": "2019-12-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217105, "name": "CK-639", "id": "CK-639", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-12T11:00:00.000000-06:00", "pickupTime": "2019-12-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217108, "name": "CK-640", "id": "CK-640", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-19T11:00:00.000000-06:00", "pickupTime": "2019-12-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217111, "name": "CK-641", "id": "CK-641", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-26T11:00:00.000000-06:00", "pickupTime": "2019-12-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217114, "name": "CK-642", "id": "CK-642", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-02T11:00:00.000000-06:00", "pickupTime": "2020-01-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217117, "name": "CK-643", "id": "CK-643", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-09T11:00:00.000000-06:00", "pickupTime": "2020-01-09T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217120, "name": "CK-644", "id": "CK-644", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-16T11:00:00.000000-06:00", "pickupTime": "2020-01-16T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217123, "name": "CK-645", "id": "CK-645", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-23T11:00:00.000000-06:00", "pickupTime": "2020-01-23T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217126, "name": "CK-646", "id": "CK-646", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-30T11:00:00.000000-06:00", "pickupTime": "2020-01-30T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217129, "name": "CK-647", "id": "CK-647", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-06T11:00:00.000000-06:00", "pickupTime": "2020-02-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217132, "name": "CK-648", "id": "CK-648", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-13T11:00:00.000000-06:00", "pickupTime": "2020-02-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217135, "name": "CK-649", "id": "CK-649", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-20T11:00:00.000000-06:00", "pickupTime": "2020-02-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217138, "name": "CK-650", "id": "CK-650", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-27T11:00:00.000000-06:00", "pickupTime": "2020-02-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217141, "name": "CK-651", "id": "CK-651", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-05T11:00:00.000000-06:00", "pickupTime": "2020-03-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217144, "name": "CK-652", "id": "CK-652", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-12T11:00:00.000000-05:00", "pickupTime": "2020-03-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217147, "name": "CK-653", "id": "CK-653", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-19T11:00:00.000000-05:00", "pickupTime": "2020-03-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217150, "name": "CK-654", "id": "CK-654", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-26T11:00:00.000000-05:00", "pickupTime": "2020-03-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217153, "name": "CK-655", "id": "CK-655", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-02T11:00:00.000000-05:00", "pickupTime": "2020-04-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217156, "name": "CK-656", "id": "CK-656", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-09T11:00:00.000000-05:00", "pickupTime": "2020-04-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217159, "name": "CK-657", "id": "CK-657", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-16T11:00:00.000000-05:00", "pickupTime": "2020-04-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217162, "name": "CK-658", "id": "CK-658", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-23T11:00:00.000000-05:00", "pickupTime": "2020-04-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 217165, "name": "CK-659", "id": "CK-659", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-30T11:00:00.000000-05:00", "pickupTime": "2020-04-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 218873, "name": "CK-660", "id": "CK-660", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T11:00:00.000000-05:00", "pickupTime": "2019-08-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218913, "name": "CK-661", "id": "CK-661", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T11:00:00.000000-05:00", "pickupTime": "2019-09-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218916, "name": "CK-662", "id": "CK-662", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T11:00:00.000000-05:00", "pickupTime": "2019-09-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218919, "name": "CK-663", "id": "CK-663", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T11:00:00.000000-05:00", "pickupTime": "2019-09-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218922, "name": "CK-664", "id": "CK-664", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T11:00:00.000000-05:00", "pickupTime": "2019-09-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218925, "name": "CK-665", "id": "CK-665", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-01T11:00:00.000000-05:00", "pickupTime": "2019-10-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218928, "name": "CK-666", "id": "CK-666", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-08T11:00:00.000000-05:00", "pickupTime": "2019-10-08T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218931, "name": "CK-667", "id": "CK-667", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-15T11:00:00.000000-05:00", "pickupTime": "2019-10-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218934, "name": "CK-668", "id": "CK-668", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-22T11:00:00.000000-05:00", "pickupTime": "2019-10-22T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218937, "name": "CK-669", "id": "CK-669", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-29T11:00:00.000000-05:00", "pickupTime": "2019-10-29T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218940, "name": "CK-670", "id": "CK-670", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-05T11:00:00.000000-06:00", "pickupTime": "2019-11-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218943, "name": "CK-671", "id": "CK-671", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-12T11:00:00.000000-06:00", "pickupTime": "2019-11-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218946, "name": "CK-672", "id": "CK-672", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-19T11:00:00.000000-06:00", "pickupTime": "2019-11-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218949, "name": "CK-673", "id": "CK-673", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-26T11:00:00.000000-06:00", "pickupTime": "2019-11-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218952, "name": "CK-674", "id": "CK-674", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-03T11:00:00.000000-06:00", "pickupTime": "2019-12-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218955, "name": "CK-675", "id": "CK-675", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-10T11:00:00.000000-06:00", "pickupTime": "2019-12-10T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218958, "name": "CK-676", "id": "CK-676", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-17T11:00:00.000000-06:00", "pickupTime": "2019-12-17T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218961, "name": "CK-677", "id": "CK-677", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-24T11:00:00.000000-06:00", "pickupTime": "2019-12-24T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218964, "name": "CK-678", "id": "CK-678", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-31T11:00:00.000000-06:00", "pickupTime": "2019-12-31T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218967, "name": "CK-679", "id": "CK-679", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-07T11:00:00.000000-06:00", "pickupTime": "2020-01-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218970, "name": "CK-680", "id": "CK-680", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-14T11:00:00.000000-06:00", "pickupTime": "2020-01-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218973, "name": "CK-681", "id": "CK-681", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-21T11:00:00.000000-06:00", "pickupTime": "2020-01-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218976, "name": "CK-682", "id": "CK-682", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-28T11:00:00.000000-06:00", "pickupTime": "2020-01-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218979, "name": "CK-683", "id": "CK-683", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-04T11:00:00.000000-06:00", "pickupTime": "2020-02-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218982, "name": "CK-684", "id": "CK-684", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-11T11:00:00.000000-06:00", "pickupTime": "2020-02-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218985, "name": "CK-685", "id": "CK-685", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-18T11:00:00.000000-06:00", "pickupTime": "2020-02-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218988, "name": "CK-686", "id": "CK-686", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-25T11:00:00.000000-06:00", "pickupTime": "2020-02-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218991, "name": "CK-687", "id": "CK-687", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-03T11:00:00.000000-06:00", "pickupTime": "2020-03-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218994, "name": "CK-688", "id": "CK-688", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-10T11:00:00.000000-05:00", "pickupTime": "2020-03-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 218997, "name": "CK-689", "id": "CK-689", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-17T11:00:00.000000-05:00", "pickupTime": "2020-03-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219000, "name": "CK-690", "id": "CK-690", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-24T11:00:00.000000-05:00", "pickupTime": "2020-03-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219003, "name": "CK-691", "id": "CK-691", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-31T11:00:00.000000-05:00", "pickupTime": "2020-03-31T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219006, "name": "CK-692", "id": "CK-692", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-07T11:00:00.000000-05:00", "pickupTime": "2020-04-07T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219009, "name": "CK-693", "id": "CK-693", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-14T11:00:00.000000-05:00", "pickupTime": "2020-04-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219012, "name": "CK-694", "id": "CK-694", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-21T11:00:00.000000-05:00", "pickupTime": "2020-04-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219015, "name": "CK-695", "id": "CK-695", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-28T11:00:00.000000-05:00", "pickupTime": "2020-04-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219025, "name": "CK-696", "id": "CK-696", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-05T11:00:00.000000-05:00", "pickupTime": "2019-09-05T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219028, "name": "CK-697", "id": "CK-697", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-12T11:00:00.000000-05:00", "pickupTime": "2019-09-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219031, "name": "CK-698", "id": "CK-698", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-19T11:00:00.000000-05:00", "pickupTime": "2019-09-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219034, "name": "CK-699", "id": "CK-699", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-26T11:00:00.000000-05:00", "pickupTime": "2019-09-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219037, "name": "CK-700", "id": "CK-700", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-03T11:00:00.000000-05:00", "pickupTime": "2019-10-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219040, "name": "CK-701", "id": "CK-701", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-10T11:00:00.000000-05:00", "pickupTime": "2019-10-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219043, "name": "CK-702", "id": "CK-702", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-17T11:00:00.000000-05:00", "pickupTime": "2019-10-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219046, "name": "CK-703", "id": "CK-703", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-24T11:00:00.000000-05:00", "pickupTime": "2019-10-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219049, "name": "CK-704", "id": "CK-704", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-31T11:00:00.000000-05:00", "pickupTime": "2019-10-31T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219052, "name": "CK-705", "id": "CK-705", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-07T11:00:00.000000-06:00", "pickupTime": "2019-11-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219055, "name": "CK-706", "id": "CK-706", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-14T11:00:00.000000-06:00", "pickupTime": "2019-11-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219058, "name": "CK-707", "id": "CK-707", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-21T11:00:00.000000-06:00", "pickupTime": "2019-11-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219061, "name": "CK-708", "id": "CK-708", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-28T11:00:00.000000-06:00", "pickupTime": "2019-11-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219064, "name": "CK-709", "id": "CK-709", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-05T11:00:00.000000-06:00", "pickupTime": "2019-12-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219067, "name": "CK-710", "id": "CK-710", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-12T11:00:00.000000-06:00", "pickupTime": "2019-12-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219070, "name": "CK-711", "id": "CK-711", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-19T11:00:00.000000-06:00", "pickupTime": "2019-12-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219073, "name": "CK-712", "id": "CK-712", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-26T11:00:00.000000-06:00", "pickupTime": "2019-12-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219076, "name": "CK-713", "id": "CK-713", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-02T11:00:00.000000-06:00", "pickupTime": "2020-01-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219079, "name": "CK-714", "id": "CK-714", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-09T11:00:00.000000-06:00", "pickupTime": "2020-01-09T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219082, "name": "CK-715", "id": "CK-715", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-16T11:00:00.000000-06:00", "pickupTime": "2020-01-16T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219085, "name": "CK-716", "id": "CK-716", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-23T11:00:00.000000-06:00", "pickupTime": "2020-01-23T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219089, "name": "CK-717", "id": "CK-717", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-30T11:00:00.000000-06:00", "pickupTime": "2020-01-30T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219092, "name": "CK-718", "id": "CK-718", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-06T11:00:00.000000-06:00", "pickupTime": "2020-02-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219095, "name": "CK-719", "id": "CK-719", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-13T11:00:00.000000-06:00", "pickupTime": "2020-02-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219098, "name": "CK-720", "id": "CK-720", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-20T11:00:00.000000-06:00", "pickupTime": "2020-02-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219101, "name": "CK-721", "id": "CK-721", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-27T11:00:00.000000-06:00", "pickupTime": "2020-02-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219104, "name": "CK-722", "id": "CK-722", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-05T11:00:00.000000-06:00", "pickupTime": "2020-03-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219107, "name": "CK-723", "id": "CK-723", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-12T11:00:00.000000-05:00", "pickupTime": "2020-03-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219110, "name": "CK-724", "id": "CK-724", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-19T11:00:00.000000-05:00", "pickupTime": "2020-03-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219113, "name": "CK-725", "id": "CK-725", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-26T11:00:00.000000-05:00", "pickupTime": "2020-03-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219116, "name": "CK-726", "id": "CK-726", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-02T11:00:00.000000-05:00", "pickupTime": "2020-04-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219119, "name": "CK-727", "id": "CK-727", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-09T11:00:00.000000-05:00", "pickupTime": "2020-04-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219122, "name": "CK-728", "id": "CK-728", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-16T11:00:00.000000-05:00", "pickupTime": "2020-04-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219125, "name": "CK-729", "id": "CK-729", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-23T11:00:00.000000-05:00", "pickupTime": "2020-04-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219128, "name": "CK-730", "id": "CK-730", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-30T11:00:00.000000-05:00", "pickupTime": "2020-04-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219142, "name": "CK-731", "id": "CK-731", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-30T11:00:00.000000-05:00", "pickupTime": "2019-08-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219145, "name": "CK-732", "id": "CK-732", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-06T11:00:00.000000-05:00", "pickupTime": "2019-09-06T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219148, "name": "CK-733", "id": "CK-733", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-13T11:00:00.000000-05:00", "pickupTime": "2019-09-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219151, "name": "CK-734", "id": "CK-734", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-20T11:00:00.000000-05:00", "pickupTime": "2019-09-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219154, "name": "CK-735", "id": "CK-735", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-27T11:00:00.000000-05:00", "pickupTime": "2019-09-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219157, "name": "CK-736", "id": "CK-736", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-04T11:00:00.000000-05:00", "pickupTime": "2019-10-04T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219160, "name": "CK-737", "id": "CK-737", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-11T11:00:00.000000-05:00", "pickupTime": "2019-10-11T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219164, "name": "CK-738", "id": "CK-738", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-18T11:00:00.000000-05:00", "pickupTime": "2019-10-18T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219167, "name": "CK-739", "id": "CK-739", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-25T11:00:00.000000-05:00", "pickupTime": "2019-10-25T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219170, "name": "CK-740", "id": "CK-740", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-01T11:00:00.000000-05:00", "pickupTime": "2019-11-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219173, "name": "CK-741", "id": "CK-741", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-08T11:00:00.000000-06:00", "pickupTime": "2019-11-08T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219176, "name": "CK-742", "id": "CK-742", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-15T11:00:00.000000-06:00", "pickupTime": "2019-11-15T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219179, "name": "CK-743", "id": "CK-743", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-22T11:00:00.000000-06:00", "pickupTime": "2019-11-22T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219182, "name": "CK-744", "id": "CK-744", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-29T11:00:00.000000-06:00", "pickupTime": "2019-11-29T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219185, "name": "CK-745", "id": "CK-745", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-06T11:00:00.000000-06:00", "pickupTime": "2019-12-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219188, "name": "CK-746", "id": "CK-746", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-13T11:00:00.000000-06:00", "pickupTime": "2019-12-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219191, "name": "CK-747", "id": "CK-747", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-20T11:00:00.000000-06:00", "pickupTime": "2019-12-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219194, "name": "CK-748", "id": "CK-748", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-27T11:00:00.000000-06:00", "pickupTime": "2019-12-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219197, "name": "CK-749", "id": "CK-749", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-03T11:00:00.000000-06:00", "pickupTime": "2020-01-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219200, "name": "CK-750", "id": "CK-750", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-10T11:00:00.000000-06:00", "pickupTime": "2020-01-10T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219203, "name": "CK-751", "id": "CK-751", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-17T11:00:00.000000-06:00", "pickupTime": "2020-01-17T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219206, "name": "CK-752", "id": "CK-752", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-24T11:00:00.000000-06:00", "pickupTime": "2020-01-24T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219209, "name": "CK-753", "id": "CK-753", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-31T11:00:00.000000-06:00", "pickupTime": "2020-01-31T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219212, "name": "CK-754", "id": "CK-754", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-07T11:00:00.000000-06:00", "pickupTime": "2020-02-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219215, "name": "CK-755", "id": "CK-755", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-14T11:00:00.000000-06:00", "pickupTime": "2020-02-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219218, "name": "CK-756", "id": "CK-756", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-21T11:00:00.000000-06:00", "pickupTime": "2020-02-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219221, "name": "CK-757", "id": "CK-757", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-28T11:00:00.000000-06:00", "pickupTime": "2020-02-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219224, "name": "CK-758", "id": "CK-758", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-06T11:00:00.000000-06:00", "pickupTime": "2020-03-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219228, "name": "CK-759", "id": "CK-759", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-13T11:00:00.000000-05:00", "pickupTime": "2020-03-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219231, "name": "CK-760", "id": "CK-760", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-20T11:00:00.000000-05:00", "pickupTime": "2020-03-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219234, "name": "CK-761", "id": "CK-761", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-27T11:00:00.000000-05:00", "pickupTime": "2020-03-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219237, "name": "CK-762", "id": "CK-762", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-03T11:00:00.000000-05:00", "pickupTime": "2020-04-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219240, "name": "CK-763", "id": "CK-763", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-10T11:00:00.000000-05:00", "pickupTime": "2020-04-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219243, "name": "CK-764", "id": "CK-764", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-17T11:00:00.000000-05:00", "pickupTime": "2020-04-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 219246, "name": "CK-765", "id": "CK-765", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-24T11:00:00.000000-05:00", "pickupTime": "2020-04-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220541, "name": "CK-766", "id": "CK-766", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T13:00:00.000000-05:00", "pickupTime": "2019-08-23T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220592, "name": "CK-767", "id": "CK-767", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T13:00:00.000000-05:00", "pickupTime": "2019-09-02T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220595, "name": "CK-768", "id": "CK-768", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T13:00:00.000000-05:00", "pickupTime": "2019-09-09T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220598, "name": "CK-769", "id": "CK-769", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T13:00:00.000000-05:00", "pickupTime": "2019-09-16T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220601, "name": "CK-770", "id": "CK-770", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T13:00:00.000000-05:00", "pickupTime": "2019-09-23T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220604, "name": "CK-771", "id": "CK-771", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T13:00:00.000000-05:00", "pickupTime": "2019-09-30T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220607, "name": "CK-772", "id": "CK-772", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T13:00:00.000000-05:00", "pickupTime": "2019-10-07T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220610, "name": "CK-773", "id": "CK-773", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T13:00:00.000000-05:00", "pickupTime": "2019-10-14T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220613, "name": "CK-774", "id": "CK-774", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T13:00:00.000000-05:00", "pickupTime": "2019-10-21T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220616, "name": "CK-775", "id": "CK-775", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T13:00:00.000000-05:00", "pickupTime": "2019-10-28T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220619, "name": "CK-776", "id": "CK-776", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T13:00:00.000000-06:00", "pickupTime": "2019-11-04T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220622, "name": "CK-777", "id": "CK-777", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T13:00:00.000000-06:00", "pickupTime": "2019-11-11T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220625, "name": "CK-778", "id": "CK-778", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T13:00:00.000000-06:00", "pickupTime": "2019-11-18T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220628, "name": "CK-779", "id": "CK-779", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T13:00:00.000000-06:00", "pickupTime": "2019-11-25T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220632, "name": "CK-780", "id": "CK-780", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-02T13:00:00.000000-06:00", "pickupTime": "2019-12-02T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220635, "name": "CK-781", "id": "CK-781", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-09T13:00:00.000000-06:00", "pickupTime": "2019-12-09T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220638, "name": "CK-782", "id": "CK-782", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-16T13:00:00.000000-06:00", "pickupTime": "2019-12-16T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220641, "name": "CK-783", "id": "CK-783", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-23T13:00:00.000000-06:00", "pickupTime": "2019-12-23T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220644, "name": "CK-784", "id": "CK-784", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-30T13:00:00.000000-06:00", "pickupTime": "2019-12-30T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220647, "name": "CK-785", "id": "CK-785", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-06T13:00:00.000000-06:00", "pickupTime": "2020-01-06T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220650, "name": "CK-786", "id": "CK-786", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-13T13:00:00.000000-06:00", "pickupTime": "2020-01-13T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220653, "name": "CK-787", "id": "CK-787", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-20T13:00:00.000000-06:00", "pickupTime": "2020-01-20T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220656, "name": "CK-788", "id": "CK-788", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-27T13:00:00.000000-06:00", "pickupTime": "2020-01-27T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220659, "name": "CK-789", "id": "CK-789", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-03T13:00:00.000000-06:00", "pickupTime": "2020-02-03T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220662, "name": "CK-790", "id": "CK-790", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-10T13:00:00.000000-06:00", "pickupTime": "2020-02-10T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220665, "name": "CK-791", "id": "CK-791", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-17T13:00:00.000000-06:00", "pickupTime": "2020-02-17T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220668, "name": "CK-792", "id": "CK-792", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-24T13:00:00.000000-06:00", "pickupTime": "2020-02-24T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220671, "name": "CK-793", "id": "CK-793", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-02T13:00:00.000000-06:00", "pickupTime": "2020-03-02T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220674, "name": "CK-794", "id": "CK-794", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-09T13:00:00.000000-05:00", "pickupTime": "2020-03-09T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220677, "name": "CK-795", "id": "CK-795", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-16T13:00:00.000000-05:00", "pickupTime": "2020-03-16T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220680, "name": "CK-796", "id": "CK-796", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-23T13:00:00.000000-05:00", "pickupTime": "2020-03-23T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220683, "name": "CK-797", "id": "CK-797", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-30T13:00:00.000000-05:00", "pickupTime": "2020-03-30T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220686, "name": "CK-798", "id": "CK-798", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-06T13:00:00.000000-05:00", "pickupTime": "2020-04-06T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220689, "name": "CK-799", "id": "CK-799", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-13T13:00:00.000000-05:00", "pickupTime": "2020-04-13T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220692, "name": "CK-800", "id": "CK-800", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-20T13:00:00.000000-05:00", "pickupTime": "2020-04-20T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220695, "name": "CK-801", "id": "CK-801", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-27T13:00:00.000000-05:00", "pickupTime": "2020-04-27T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220705, "name": "CK-802", "id": "CK-802", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T13:00:00.000000-05:00", "pickupTime": "2019-09-03T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220708, "name": "CK-803", "id": "CK-803", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T13:00:00.000000-05:00", "pickupTime": "2019-09-10T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220711, "name": "CK-804", "id": "CK-804", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T13:00:00.000000-05:00", "pickupTime": "2019-09-17T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220714, "name": "CK-805", "id": "CK-805", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T13:00:00.000000-05:00", "pickupTime": "2019-09-24T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220718, "name": "CK-806", "id": "CK-806", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-01T13:00:00.000000-05:00", "pickupTime": "2019-10-01T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220721, "name": "CK-807", "id": "CK-807", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-08T13:00:00.000000-05:00", "pickupTime": "2019-10-08T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220724, "name": "CK-808", "id": "CK-808", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-15T13:00:00.000000-05:00", "pickupTime": "2019-10-15T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220727, "name": "CK-809", "id": "CK-809", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-22T13:00:00.000000-05:00", "pickupTime": "2019-10-22T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220730, "name": "CK-810", "id": "CK-810", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-29T13:00:00.000000-05:00", "pickupTime": "2019-10-29T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220733, "name": "CK-811", "id": "CK-811", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-05T13:00:00.000000-06:00", "pickupTime": "2019-11-05T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220736, "name": "CK-812", "id": "CK-812", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-12T13:00:00.000000-06:00", "pickupTime": "2019-11-12T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220739, "name": "CK-813", "id": "CK-813", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-19T13:00:00.000000-06:00", "pickupTime": "2019-11-19T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220743, "name": "CK-814", "id": "CK-814", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-26T13:00:00.000000-06:00", "pickupTime": "2019-11-26T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220746, "name": "CK-815", "id": "CK-815", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-03T13:00:00.000000-06:00", "pickupTime": "2019-12-03T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220749, "name": "CK-816", "id": "CK-816", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-10T13:00:00.000000-06:00", "pickupTime": "2019-12-10T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220752, "name": "CK-817", "id": "CK-817", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-17T13:00:00.000000-06:00", "pickupTime": "2019-12-17T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220755, "name": "CK-818", "id": "CK-818", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-24T13:00:00.000000-06:00", "pickupTime": "2019-12-24T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220758, "name": "CK-819", "id": "CK-819", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-31T13:00:00.000000-06:00", "pickupTime": "2019-12-31T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220761, "name": "CK-820", "id": "CK-820", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-07T13:00:00.000000-06:00", "pickupTime": "2020-01-07T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220764, "name": "CK-821", "id": "CK-821", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-14T13:00:00.000000-06:00", "pickupTime": "2020-01-14T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220767, "name": "CK-822", "id": "CK-822", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-21T13:00:00.000000-06:00", "pickupTime": "2020-01-21T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220770, "name": "CK-823", "id": "CK-823", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-28T13:00:00.000000-06:00", "pickupTime": "2020-01-28T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220773, "name": "CK-824", "id": "CK-824", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-04T13:00:00.000000-06:00", "pickupTime": "2020-02-04T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220776, "name": "CK-825", "id": "CK-825", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-11T13:00:00.000000-06:00", "pickupTime": "2020-02-11T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220779, "name": "CK-826", "id": "CK-826", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-18T13:00:00.000000-06:00", "pickupTime": "2020-02-18T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220782, "name": "CK-827", "id": "CK-827", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-25T13:00:00.000000-06:00", "pickupTime": "2020-02-25T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220785, "name": "CK-828", "id": "CK-828", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-03T13:00:00.000000-06:00", "pickupTime": "2020-03-03T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220788, "name": "CK-829", "id": "CK-829", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-10T13:00:00.000000-05:00", "pickupTime": "2020-03-10T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220791, "name": "CK-830", "id": "CK-830", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-17T13:00:00.000000-05:00", "pickupTime": "2020-03-17T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220794, "name": "CK-831", "id": "CK-831", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-24T13:00:00.000000-05:00", "pickupTime": "2020-03-24T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220799, "name": "CK-832", "id": "CK-832", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-31T13:00:00.000000-05:00", "pickupTime": "2020-03-31T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220802, "name": "CK-833", "id": "CK-833", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-07T13:00:00.000000-05:00", "pickupTime": "2020-04-07T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220805, "name": "CK-834", "id": "CK-834", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-14T13:00:00.000000-05:00", "pickupTime": "2020-04-14T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220808, "name": "CK-835", "id": "CK-835", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-21T13:00:00.000000-05:00", "pickupTime": "2020-04-21T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220811, "name": "CK-836", "id": "CK-836", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-28T13:00:00.000000-05:00", "pickupTime": "2020-04-28T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220821, "name": "CK-837", "id": "CK-837", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-04T13:00:00.000000-05:00", "pickupTime": "2019-09-04T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220824, "name": "CK-838", "id": "CK-838", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-11T13:00:00.000000-05:00", "pickupTime": "2019-09-11T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220827, "name": "CK-839", "id": "CK-839", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-18T13:00:00.000000-05:00", "pickupTime": "2019-09-18T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220830, "name": "CK-840", "id": "CK-840", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-25T13:00:00.000000-05:00", "pickupTime": "2019-09-25T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220833, "name": "CK-841", "id": "CK-841", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-02T13:00:00.000000-05:00", "pickupTime": "2019-10-02T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220836, "name": "CK-842", "id": "CK-842", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-09T13:00:00.000000-05:00", "pickupTime": "2019-10-09T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220839, "name": "CK-843", "id": "CK-843", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-16T13:00:00.000000-05:00", "pickupTime": "2019-10-16T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220842, "name": "CK-844", "id": "CK-844", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-23T13:00:00.000000-05:00", "pickupTime": "2019-10-23T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220845, "name": "CK-845", "id": "CK-845", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-30T13:00:00.000000-05:00", "pickupTime": "2019-10-30T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220848, "name": "CK-846", "id": "CK-846", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-06T13:00:00.000000-06:00", "pickupTime": "2019-11-06T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220851, "name": "CK-847", "id": "CK-847", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-13T13:00:00.000000-06:00", "pickupTime": "2019-11-13T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220854, "name": "CK-848", "id": "CK-848", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-20T13:00:00.000000-06:00", "pickupTime": "2019-11-20T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220857, "name": "CK-849", "id": "CK-849", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-27T13:00:00.000000-06:00", "pickupTime": "2019-11-27T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220860, "name": "CK-850", "id": "CK-850", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-04T13:00:00.000000-06:00", "pickupTime": "2019-12-04T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220863, "name": "CK-851", "id": "CK-851", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-11T13:00:00.000000-06:00", "pickupTime": "2019-12-11T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220866, "name": "CK-852", "id": "CK-852", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-18T13:00:00.000000-06:00", "pickupTime": "2019-12-18T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220869, "name": "CK-853", "id": "CK-853", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-25T13:00:00.000000-06:00", "pickupTime": "2019-12-25T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220872, "name": "CK-854", "id": "CK-854", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-01T13:00:00.000000-06:00", "pickupTime": "2020-01-01T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220875, "name": "CK-855", "id": "CK-855", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-08T13:00:00.000000-06:00", "pickupTime": "2020-01-08T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220878, "name": "CK-856", "id": "CK-856", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-15T13:00:00.000000-06:00", "pickupTime": "2020-01-15T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220881, "name": "CK-857", "id": "CK-857", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-22T13:00:00.000000-06:00", "pickupTime": "2020-01-22T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220884, "name": "CK-858", "id": "CK-858", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-29T13:00:00.000000-06:00", "pickupTime": "2020-01-29T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220887, "name": "CK-859", "id": "CK-859", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-05T13:00:00.000000-06:00", "pickupTime": "2020-02-05T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220890, "name": "CK-860", "id": "CK-860", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-12T13:00:00.000000-06:00", "pickupTime": "2020-02-12T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220893, "name": "CK-861", "id": "CK-861", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-19T13:00:00.000000-06:00", "pickupTime": "2020-02-19T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220896, "name": "CK-862", "id": "CK-862", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-26T13:00:00.000000-06:00", "pickupTime": "2020-02-26T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220899, "name": "CK-863", "id": "CK-863", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-04T13:00:00.000000-06:00", "pickupTime": "2020-03-04T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220902, "name": "CK-864", "id": "CK-864", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-11T13:00:00.000000-05:00", "pickupTime": "2020-03-11T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220905, "name": "CK-865", "id": "CK-865", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-18T13:00:00.000000-05:00", "pickupTime": "2020-03-18T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220908, "name": "CK-866", "id": "CK-866", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-25T13:00:00.000000-05:00", "pickupTime": "2020-03-25T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220911, "name": "CK-867", "id": "CK-867", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-01T13:00:00.000000-05:00", "pickupTime": "2020-04-01T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220914, "name": "CK-868", "id": "CK-868", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-08T13:00:00.000000-05:00", "pickupTime": "2020-04-08T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220917, "name": "CK-869", "id": "CK-869", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-15T13:00:00.000000-05:00", "pickupTime": "2020-04-15T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220920, "name": "CK-870", "id": "CK-870", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-22T13:00:00.000000-05:00", "pickupTime": "2020-04-22T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220923, "name": "CK-871", "id": "CK-871", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-29T13:00:00.000000-05:00", "pickupTime": "2020-04-29T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220933, "name": "CK-872", "id": "CK-872", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-05T13:00:00.000000-05:00", "pickupTime": "2019-09-05T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220936, "name": "CK-873", "id": "CK-873", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-12T13:00:00.000000-05:00", "pickupTime": "2019-09-12T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220939, "name": "CK-874", "id": "CK-874", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-19T13:00:00.000000-05:00", "pickupTime": "2019-09-19T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220942, "name": "CK-875", "id": "CK-875", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-26T13:00:00.000000-05:00", "pickupTime": "2019-09-26T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220945, "name": "CK-876", "id": "CK-876", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-03T13:00:00.000000-05:00", "pickupTime": "2019-10-03T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220949, "name": "CK-877", "id": "CK-877", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-10T13:00:00.000000-05:00", "pickupTime": "2019-10-10T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220952, "name": "CK-878", "id": "CK-878", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-17T13:00:00.000000-05:00", "pickupTime": "2019-10-17T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220955, "name": "CK-879", "id": "CK-879", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-24T13:00:00.000000-05:00", "pickupTime": "2019-10-24T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220958, "name": "CK-880", "id": "CK-880", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-31T13:00:00.000000-05:00", "pickupTime": "2019-10-31T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220961, "name": "CK-881", "id": "CK-881", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-07T13:00:00.000000-06:00", "pickupTime": "2019-11-07T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220964, "name": "CK-882", "id": "CK-882", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-14T13:00:00.000000-06:00", "pickupTime": "2019-11-14T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220967, "name": "CK-883", "id": "CK-883", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-21T13:00:00.000000-06:00", "pickupTime": "2019-11-21T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220970, "name": "CK-884", "id": "CK-884", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-28T13:00:00.000000-06:00", "pickupTime": "2019-11-28T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220973, "name": "CK-885", "id": "CK-885", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-05T13:00:00.000000-06:00", "pickupTime": "2019-12-05T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220976, "name": "CK-886", "id": "CK-886", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-12T13:00:00.000000-06:00", "pickupTime": "2019-12-12T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220979, "name": "CK-887", "id": "CK-887", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-19T13:00:00.000000-06:00", "pickupTime": "2019-12-19T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220982, "name": "CK-888", "id": "CK-888", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-26T13:00:00.000000-06:00", "pickupTime": "2019-12-26T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220985, "name": "CK-889", "id": "CK-889", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-02T13:00:00.000000-06:00", "pickupTime": "2020-01-02T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220988, "name": "CK-890", "id": "CK-890", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-09T13:00:00.000000-06:00", "pickupTime": "2020-01-09T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220991, "name": "CK-891", "id": "CK-891", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-16T13:00:00.000000-06:00", "pickupTime": "2020-01-16T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220994, "name": "CK-892", "id": "CK-892", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-23T13:00:00.000000-06:00", "pickupTime": "2020-01-23T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 220997, "name": "CK-893", "id": "CK-893", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-30T13:00:00.000000-06:00", "pickupTime": "2020-01-30T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221000, "name": "CK-894", "id": "CK-894", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-06T13:00:00.000000-06:00", "pickupTime": "2020-02-06T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221003, "name": "CK-895", "id": "CK-895", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-13T13:00:00.000000-06:00", "pickupTime": "2020-02-13T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221006, "name": "CK-896", "id": "CK-896", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-20T13:00:00.000000-06:00", "pickupTime": "2020-02-20T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221009, "name": "CK-897", "id": "CK-897", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-27T13:00:00.000000-06:00", "pickupTime": "2020-02-27T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221012, "name": "CK-898", "id": "CK-898", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-05T13:00:00.000000-06:00", "pickupTime": "2020-03-05T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221015, "name": "CK-899", "id": "CK-899", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-12T13:00:00.000000-05:00", "pickupTime": "2020-03-12T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221018, "name": "CK-900", "id": "CK-900", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-19T13:00:00.000000-05:00", "pickupTime": "2020-03-19T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221021, "name": "CK-901", "id": "CK-901", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-26T13:00:00.000000-05:00", "pickupTime": "2020-03-26T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221024, "name": "CK-902", "id": "CK-902", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-02T13:00:00.000000-05:00", "pickupTime": "2020-04-02T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221027, "name": "CK-903", "id": "CK-903", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-09T13:00:00.000000-05:00", "pickupTime": "2020-04-09T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221030, "name": "CK-904", "id": "CK-904", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-16T13:00:00.000000-05:00", "pickupTime": "2020-04-16T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221033, "name": "CK-905", "id": "CK-905", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-23T13:00:00.000000-05:00", "pickupTime": "2020-04-23T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221046, "name": "CK-906", "id": "CK-906", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-30T13:00:00.000000-05:00", "pickupTime": "2019-08-30T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221049, "name": "CK-907", "id": "CK-907", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-06T13:00:00.000000-05:00", "pickupTime": "2019-09-06T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221052, "name": "CK-908", "id": "CK-908", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-13T13:00:00.000000-05:00", "pickupTime": "2019-09-13T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221055, "name": "CK-909", "id": "CK-909", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-20T13:00:00.000000-05:00", "pickupTime": "2019-09-20T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221058, "name": "CK-910", "id": "CK-910", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-27T13:00:00.000000-05:00", "pickupTime": "2019-09-27T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221061, "name": "CK-911", "id": "CK-911", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-04T13:00:00.000000-05:00", "pickupTime": "2019-10-04T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221064, "name": "CK-912", "id": "CK-912", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-11T13:00:00.000000-05:00", "pickupTime": "2019-10-11T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221067, "name": "CK-913", "id": "CK-913", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-18T13:00:00.000000-05:00", "pickupTime": "2019-10-18T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221070, "name": "CK-914", "id": "CK-914", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-25T13:00:00.000000-05:00", "pickupTime": "2019-10-25T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221073, "name": "CK-915", "id": "CK-915", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-01T13:00:00.000000-05:00", "pickupTime": "2019-11-01T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221078, "name": "CK-916", "id": "CK-916", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-08T13:00:00.000000-06:00", "pickupTime": "2019-11-08T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221081, "name": "CK-917", "id": "CK-917", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-15T13:00:00.000000-06:00", "pickupTime": "2019-11-15T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221084, "name": "CK-918", "id": "CK-918", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-22T13:00:00.000000-06:00", "pickupTime": "2019-11-22T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221087, "name": "CK-919", "id": "CK-919", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-29T13:00:00.000000-06:00", "pickupTime": "2019-11-29T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221090, "name": "CK-920", "id": "CK-920", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-06T13:00:00.000000-06:00", "pickupTime": "2019-12-06T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221093, "name": "CK-921", "id": "CK-921", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-13T13:00:00.000000-06:00", "pickupTime": "2019-12-13T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221096, "name": "CK-922", "id": "CK-922", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-20T13:00:00.000000-06:00", "pickupTime": "2019-12-20T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221099, "name": "CK-923", "id": "CK-923", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-27T13:00:00.000000-06:00", "pickupTime": "2019-12-27T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221102, "name": "CK-924", "id": "CK-924", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-03T13:00:00.000000-06:00", "pickupTime": "2020-01-03T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221105, "name": "CK-925", "id": "CK-925", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-10T13:00:00.000000-06:00", "pickupTime": "2020-01-10T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221108, "name": "CK-926", "id": "CK-926", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-17T13:00:00.000000-06:00", "pickupTime": "2020-01-17T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221111, "name": "CK-927", "id": "CK-927", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-24T13:00:00.000000-06:00", "pickupTime": "2020-01-24T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221114, "name": "CK-928", "id": "CK-928", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-31T13:00:00.000000-06:00", "pickupTime": "2020-01-31T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221117, "name": "CK-929", "id": "CK-929", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-07T13:00:00.000000-06:00", "pickupTime": "2020-02-07T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221120, "name": "CK-930", "id": "CK-930", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-14T13:00:00.000000-06:00", "pickupTime": "2020-02-14T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221123, "name": "CK-931", "id": "CK-931", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-21T13:00:00.000000-06:00", "pickupTime": "2020-02-21T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221126, "name": "CK-932", "id": "CK-932", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-28T13:00:00.000000-06:00", "pickupTime": "2020-02-28T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221129, "name": "CK-933", "id": "CK-933", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-06T13:00:00.000000-06:00", "pickupTime": "2020-03-06T11:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221132, "name": "CK-934", "id": "CK-934", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-13T13:00:00.000000-05:00", "pickupTime": "2020-03-13T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221135, "name": "CK-935", "id": "CK-935", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-20T13:00:00.000000-05:00", "pickupTime": "2020-03-20T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221138, "name": "CK-936", "id": "CK-936", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-27T13:00:00.000000-05:00", "pickupTime": "2020-03-27T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221141, "name": "CK-937", "id": "CK-937", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-03T13:00:00.000000-05:00", "pickupTime": "2020-04-03T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221144, "name": "CK-938", "id": "CK-938", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-10T13:00:00.000000-05:00", "pickupTime": "2020-04-10T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221147, "name": "CK-939", "id": "CK-939", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-17T13:00:00.000000-05:00", "pickupTime": "2020-04-17T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 221150, "name": "CK-940", "id": "CK-940", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-24T13:00:00.000000-05:00", "pickupTime": "2020-04-24T11:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 223273, "name": "CK-941", "id": "CK-941", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T11:00:00.000000-05:00", "pickupTime": "2019-08-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223311, "name": "CK-942", "id": "CK-942", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-01T11:00:00.000000-05:00", "pickupTime": "2019-09-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223314, "name": "CK-943", "id": "CK-943", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-08T11:00:00.000000-05:00", "pickupTime": "2019-09-08T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223317, "name": "CK-944", "id": "CK-944", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-15T11:00:00.000000-05:00", "pickupTime": "2019-09-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223320, "name": "CK-945", "id": "CK-945", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-22T11:00:00.000000-05:00", "pickupTime": "2019-09-22T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223324, "name": "CK-946", "id": "CK-946", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-29T11:00:00.000000-05:00", "pickupTime": "2019-09-29T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223327, "name": "CK-947", "id": "CK-947", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-06T11:00:00.000000-05:00", "pickupTime": "2019-10-06T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223330, "name": "CK-948", "id": "CK-948", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-13T11:00:00.000000-05:00", "pickupTime": "2019-10-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223333, "name": "CK-949", "id": "CK-949", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-20T11:00:00.000000-05:00", "pickupTime": "2019-10-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223336, "name": "CK-950", "id": "CK-950", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-27T11:00:00.000000-05:00", "pickupTime": "2019-10-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223339, "name": "CK-951", "id": "CK-951", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-03T11:00:00.000000-06:00", "pickupTime": "2019-11-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223342, "name": "CK-952", "id": "CK-952", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-10T11:00:00.000000-06:00", "pickupTime": "2019-11-10T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223345, "name": "CK-953", "id": "CK-953", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-17T11:00:00.000000-06:00", "pickupTime": "2019-11-17T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223348, "name": "CK-954", "id": "CK-954", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-24T11:00:00.000000-06:00", "pickupTime": "2019-11-24T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223351, "name": "CK-955", "id": "CK-955", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-01T11:00:00.000000-06:00", "pickupTime": "2019-12-01T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223354, "name": "CK-956", "id": "CK-956", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-08T11:00:00.000000-06:00", "pickupTime": "2019-12-08T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223357, "name": "CK-957", "id": "CK-957", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-15T11:00:00.000000-06:00", "pickupTime": "2019-12-15T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223360, "name": "CK-958", "id": "CK-958", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-22T11:00:00.000000-06:00", "pickupTime": "2019-12-22T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223363, "name": "CK-959", "id": "CK-959", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-29T11:00:00.000000-06:00", "pickupTime": "2019-12-29T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223366, "name": "CK-960", "id": "CK-960", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-05T11:00:00.000000-06:00", "pickupTime": "2020-01-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223369, "name": "CK-961", "id": "CK-961", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-12T11:00:00.000000-06:00", "pickupTime": "2020-01-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223372, "name": "CK-962", "id": "CK-962", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-19T11:00:00.000000-06:00", "pickupTime": "2020-01-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223375, "name": "CK-963", "id": "CK-963", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-26T11:00:00.000000-06:00", "pickupTime": "2020-01-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223378, "name": "CK-964", "id": "CK-964", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-02T11:00:00.000000-06:00", "pickupTime": "2020-02-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223381, "name": "CK-965", "id": "CK-965", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-09T11:00:00.000000-06:00", "pickupTime": "2020-02-09T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223384, "name": "CK-966", "id": "CK-966", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-16T11:00:00.000000-06:00", "pickupTime": "2020-02-16T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223387, "name": "CK-967", "id": "CK-967", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-23T11:00:00.000000-06:00", "pickupTime": "2020-02-23T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223390, "name": "CK-968", "id": "CK-968", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-01T11:00:00.000000-06:00", "pickupTime": "2020-03-01T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223393, "name": "CK-969", "id": "CK-969", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-08T11:00:00.000000-05:00", "pickupTime": "2020-03-08T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223396, "name": "CK-970", "id": "CK-970", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-15T11:00:00.000000-05:00", "pickupTime": "2020-03-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223399, "name": "CK-971", "id": "CK-971", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-22T11:00:00.000000-05:00", "pickupTime": "2020-03-22T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223402, "name": "CK-972", "id": "CK-972", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-29T11:00:00.000000-05:00", "pickupTime": "2020-03-29T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223405, "name": "CK-973", "id": "CK-973", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-05T11:00:00.000000-05:00", "pickupTime": "2020-04-05T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223408, "name": "CK-974", "id": "CK-974", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-12T11:00:00.000000-05:00", "pickupTime": "2020-04-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223411, "name": "CK-975", "id": "CK-975", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-19T11:00:00.000000-05:00", "pickupTime": "2020-04-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223414, "name": "CK-976", "id": "CK-976", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-26T11:00:00.000000-05:00", "pickupTime": "2020-04-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223425, "name": "CK-977", "id": "CK-977", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T11:00:00.000000-05:00", "pickupTime": "2019-09-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223428, "name": "CK-978", "id": "CK-978", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T11:00:00.000000-05:00", "pickupTime": "2019-09-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223431, "name": "CK-979", "id": "CK-979", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T11:00:00.000000-05:00", "pickupTime": "2019-09-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223434, "name": "CK-980", "id": "CK-980", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T11:00:00.000000-05:00", "pickupTime": "2019-09-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223437, "name": "CK-981", "id": "CK-981", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T11:00:00.000000-05:00", "pickupTime": "2019-09-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223440, "name": "CK-982", "id": "CK-982", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T11:00:00.000000-05:00", "pickupTime": "2019-10-07T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223443, "name": "CK-983", "id": "CK-983", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T11:00:00.000000-05:00", "pickupTime": "2019-10-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223446, "name": "CK-984", "id": "CK-984", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T11:00:00.000000-05:00", "pickupTime": "2019-10-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223449, "name": "CK-985", "id": "CK-985", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T11:00:00.000000-05:00", "pickupTime": "2019-10-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223452, "name": "CK-986", "id": "CK-986", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T11:00:00.000000-06:00", "pickupTime": "2019-11-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223455, "name": "CK-987", "id": "CK-987", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T11:00:00.000000-06:00", "pickupTime": "2019-11-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223458, "name": "CK-988", "id": "CK-988", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T11:00:00.000000-06:00", "pickupTime": "2019-11-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223461, "name": "CK-989", "id": "CK-989", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T11:00:00.000000-06:00", "pickupTime": "2019-11-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223464, "name": "CK-990", "id": "CK-990", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-02T11:00:00.000000-06:00", "pickupTime": "2019-12-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223467, "name": "CK-991", "id": "CK-991", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-09T11:00:00.000000-06:00", "pickupTime": "2019-12-09T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223470, "name": "CK-992", "id": "CK-992", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-16T11:00:00.000000-06:00", "pickupTime": "2019-12-16T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223473, "name": "CK-993", "id": "CK-993", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-23T11:00:00.000000-06:00", "pickupTime": "2019-12-23T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223476, "name": "CK-994", "id": "CK-994", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-30T11:00:00.000000-06:00", "pickupTime": "2019-12-30T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223479, "name": "CK-995", "id": "CK-995", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-06T11:00:00.000000-06:00", "pickupTime": "2020-01-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223482, "name": "CK-996", "id": "CK-996", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-13T11:00:00.000000-06:00", "pickupTime": "2020-01-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223485, "name": "CK-997", "id": "CK-997", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-20T11:00:00.000000-06:00", "pickupTime": "2020-01-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223488, "name": "CK-998", "id": "CK-998", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-27T11:00:00.000000-06:00", "pickupTime": "2020-01-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223491, "name": "CK-999", "id": "CK-999", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-03T11:00:00.000000-06:00", "pickupTime": "2020-02-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223494, "name": "CK-1000", "id": "CK-1000", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-10T11:00:00.000000-06:00", "pickupTime": "2020-02-10T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223497, "name": "CK-1001", "id": "CK-1001", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-17T11:00:00.000000-06:00", "pickupTime": "2020-02-17T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223501, "name": "CK-1002", "id": "CK-1002", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-24T11:00:00.000000-06:00", "pickupTime": "2020-02-24T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223504, "name": "CK-1003", "id": "CK-1003", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-02T11:00:00.000000-06:00", "pickupTime": "2020-03-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223507, "name": "CK-1004", "id": "CK-1004", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-09T11:00:00.000000-05:00", "pickupTime": "2020-03-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223510, "name": "CK-1005", "id": "CK-1005", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-16T11:00:00.000000-05:00", "pickupTime": "2020-03-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223513, "name": "CK-1006", "id": "CK-1006", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-23T11:00:00.000000-05:00", "pickupTime": "2020-03-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223516, "name": "CK-1007", "id": "CK-1007", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-30T11:00:00.000000-05:00", "pickupTime": "2020-03-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223519, "name": "CK-1008", "id": "CK-1008", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-06T11:00:00.000000-05:00", "pickupTime": "2020-04-06T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223522, "name": "CK-1009", "id": "CK-1009", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-13T11:00:00.000000-05:00", "pickupTime": "2020-04-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223525, "name": "CK-1010", "id": "CK-1010", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-20T11:00:00.000000-05:00", "pickupTime": "2020-04-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223529, "name": "CK-1011", "id": "CK-1011", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-27T11:00:00.000000-05:00", "pickupTime": "2020-04-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223541, "name": "CK-1012", "id": "CK-1012", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T11:00:00.000000-05:00", "pickupTime": "2019-09-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223544, "name": "CK-1013", "id": "CK-1013", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T11:00:00.000000-05:00", "pickupTime": "2019-09-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223547, "name": "CK-1014", "id": "CK-1014", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T11:00:00.000000-05:00", "pickupTime": "2019-09-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223550, "name": "CK-1015", "id": "CK-1015", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T11:00:00.000000-05:00", "pickupTime": "2019-09-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223553, "name": "CK-1016", "id": "CK-1016", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-01T11:00:00.000000-05:00", "pickupTime": "2019-10-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223556, "name": "CK-1017", "id": "CK-1017", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-08T11:00:00.000000-05:00", "pickupTime": "2019-10-08T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223559, "name": "CK-1018", "id": "CK-1018", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-15T11:00:00.000000-05:00", "pickupTime": "2019-10-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223562, "name": "CK-1019", "id": "CK-1019", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-22T11:00:00.000000-05:00", "pickupTime": "2019-10-22T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223565, "name": "CK-1020", "id": "CK-1020", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-29T11:00:00.000000-05:00", "pickupTime": "2019-10-29T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223568, "name": "CK-1021", "id": "CK-1021", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-05T11:00:00.000000-06:00", "pickupTime": "2019-11-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223571, "name": "CK-1022", "id": "CK-1022", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-12T11:00:00.000000-06:00", "pickupTime": "2019-11-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223574, "name": "CK-1023", "id": "CK-1023", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-19T11:00:00.000000-06:00", "pickupTime": "2019-11-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223577, "name": "CK-1024", "id": "CK-1024", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-26T11:00:00.000000-06:00", "pickupTime": "2019-11-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223580, "name": "CK-1025", "id": "CK-1025", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-03T11:00:00.000000-06:00", "pickupTime": "2019-12-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223583, "name": "CK-1026", "id": "CK-1026", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-10T11:00:00.000000-06:00", "pickupTime": "2019-12-10T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223586, "name": "CK-1027", "id": "CK-1027", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-17T11:00:00.000000-06:00", "pickupTime": "2019-12-17T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223589, "name": "CK-1028", "id": "CK-1028", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-24T11:00:00.000000-06:00", "pickupTime": "2019-12-24T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223592, "name": "CK-1029", "id": "CK-1029", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-31T11:00:00.000000-06:00", "pickupTime": "2019-12-31T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223595, "name": "CK-1030", "id": "CK-1030", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-07T11:00:00.000000-06:00", "pickupTime": "2020-01-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223598, "name": "CK-1031", "id": "CK-1031", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-14T11:00:00.000000-06:00", "pickupTime": "2020-01-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223601, "name": "CK-1032", "id": "CK-1032", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-21T11:00:00.000000-06:00", "pickupTime": "2020-01-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223604, "name": "CK-1033", "id": "CK-1033", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-28T11:00:00.000000-06:00", "pickupTime": "2020-01-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223607, "name": "CK-1034", "id": "CK-1034", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-04T11:00:00.000000-06:00", "pickupTime": "2020-02-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223610, "name": "CK-1035", "id": "CK-1035", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-11T11:00:00.000000-06:00", "pickupTime": "2020-02-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223613, "name": "CK-1036", "id": "CK-1036", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-18T11:00:00.000000-06:00", "pickupTime": "2020-02-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223616, "name": "CK-1037", "id": "CK-1037", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-25T11:00:00.000000-06:00", "pickupTime": "2020-02-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223619, "name": "CK-1038", "id": "CK-1038", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-03T11:00:00.000000-06:00", "pickupTime": "2020-03-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223622, "name": "CK-1039", "id": "CK-1039", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-10T11:00:00.000000-05:00", "pickupTime": "2020-03-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223625, "name": "CK-1040", "id": "CK-1040", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-17T11:00:00.000000-05:00", "pickupTime": "2020-03-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223628, "name": "CK-1041", "id": "CK-1041", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-24T11:00:00.000000-05:00", "pickupTime": "2020-03-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223631, "name": "CK-1042", "id": "CK-1042", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-31T11:00:00.000000-05:00", "pickupTime": "2020-03-31T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223634, "name": "CK-1043", "id": "CK-1043", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-07T11:00:00.000000-05:00", "pickupTime": "2020-04-07T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223637, "name": "CK-1044", "id": "CK-1044", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-14T11:00:00.000000-05:00", "pickupTime": "2020-04-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223640, "name": "CK-1045", "id": "CK-1045", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-21T11:00:00.000000-05:00", "pickupTime": "2020-04-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223643, "name": "CK-1046", "id": "CK-1046", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-28T11:00:00.000000-05:00", "pickupTime": "2020-04-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223654, "name": "CK-1047", "id": "CK-1047", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-04T11:00:00.000000-05:00", "pickupTime": "2019-09-04T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223657, "name": "CK-1048", "id": "CK-1048", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-11T11:00:00.000000-05:00", "pickupTime": "2019-09-11T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223660, "name": "CK-1049", "id": "CK-1049", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-18T11:00:00.000000-05:00", "pickupTime": "2019-09-18T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223663, "name": "CK-1050", "id": "CK-1050", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-25T11:00:00.000000-05:00", "pickupTime": "2019-09-25T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223666, "name": "CK-1051", "id": "CK-1051", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-02T11:00:00.000000-05:00", "pickupTime": "2019-10-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223669, "name": "CK-1052", "id": "CK-1052", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-09T11:00:00.000000-05:00", "pickupTime": "2019-10-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223672, "name": "CK-1053", "id": "CK-1053", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-16T11:00:00.000000-05:00", "pickupTime": "2019-10-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223675, "name": "CK-1054", "id": "CK-1054", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-23T11:00:00.000000-05:00", "pickupTime": "2019-10-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223678, "name": "CK-1055", "id": "CK-1055", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-30T11:00:00.000000-05:00", "pickupTime": "2019-10-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223681, "name": "CK-1056", "id": "CK-1056", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-06T11:00:00.000000-06:00", "pickupTime": "2019-11-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223684, "name": "CK-1057", "id": "CK-1057", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-13T11:00:00.000000-06:00", "pickupTime": "2019-11-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223688, "name": "CK-1058", "id": "CK-1058", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-20T11:00:00.000000-06:00", "pickupTime": "2019-11-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223691, "name": "CK-1059", "id": "CK-1059", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-27T11:00:00.000000-06:00", "pickupTime": "2019-11-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223694, "name": "CK-1060", "id": "CK-1060", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-04T11:00:00.000000-06:00", "pickupTime": "2019-12-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223697, "name": "CK-1061", "id": "CK-1061", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-11T11:00:00.000000-06:00", "pickupTime": "2019-12-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223700, "name": "CK-1062", "id": "CK-1062", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-18T11:00:00.000000-06:00", "pickupTime": "2019-12-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223703, "name": "CK-1063", "id": "CK-1063", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-25T11:00:00.000000-06:00", "pickupTime": "2019-12-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223706, "name": "CK-1064", "id": "CK-1064", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-01T11:00:00.000000-06:00", "pickupTime": "2020-01-01T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223709, "name": "CK-1065", "id": "CK-1065", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-08T11:00:00.000000-06:00", "pickupTime": "2020-01-08T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223712, "name": "CK-1066", "id": "CK-1066", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-15T11:00:00.000000-06:00", "pickupTime": "2020-01-15T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223715, "name": "CK-1067", "id": "CK-1067", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-22T11:00:00.000000-06:00", "pickupTime": "2020-01-22T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223718, "name": "CK-1068", "id": "CK-1068", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-29T11:00:00.000000-06:00", "pickupTime": "2020-01-29T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223721, "name": "CK-1069", "id": "CK-1069", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-05T11:00:00.000000-06:00", "pickupTime": "2020-02-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223724, "name": "CK-1070", "id": "CK-1070", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-12T11:00:00.000000-06:00", "pickupTime": "2020-02-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223727, "name": "CK-1071", "id": "CK-1071", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-19T11:00:00.000000-06:00", "pickupTime": "2020-02-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223730, "name": "CK-1072", "id": "CK-1072", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-26T11:00:00.000000-06:00", "pickupTime": "2020-02-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223733, "name": "CK-1073", "id": "CK-1073", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-04T11:00:00.000000-06:00", "pickupTime": "2020-03-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223736, "name": "CK-1074", "id": "CK-1074", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-11T11:00:00.000000-05:00", "pickupTime": "2020-03-11T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223739, "name": "CK-1075", "id": "CK-1075", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-18T11:00:00.000000-05:00", "pickupTime": "2020-03-18T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223742, "name": "CK-1076", "id": "CK-1076", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-25T11:00:00.000000-05:00", "pickupTime": "2020-03-25T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223745, "name": "CK-1077", "id": "CK-1077", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-01T11:00:00.000000-05:00", "pickupTime": "2020-04-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223748, "name": "CK-1078", "id": "CK-1078", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-08T11:00:00.000000-05:00", "pickupTime": "2020-04-08T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223751, "name": "CK-1079", "id": "CK-1079", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-15T11:00:00.000000-05:00", "pickupTime": "2020-04-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223754, "name": "CK-1080", "id": "CK-1080", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-22T11:00:00.000000-05:00", "pickupTime": "2020-04-22T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223757, "name": "CK-1081", "id": "CK-1081", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-29T11:00:00.000000-05:00", "pickupTime": "2020-04-29T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223772, "name": "CK-1082", "id": "CK-1082", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-05T11:00:00.000000-05:00", "pickupTime": "2019-09-05T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223775, "name": "CK-1083", "id": "CK-1083", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-12T11:00:00.000000-05:00", "pickupTime": "2019-09-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223778, "name": "CK-1084", "id": "CK-1084", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-19T11:00:00.000000-05:00", "pickupTime": "2019-09-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223781, "name": "CK-1085", "id": "CK-1085", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-26T11:00:00.000000-05:00", "pickupTime": "2019-09-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223784, "name": "CK-1086", "id": "CK-1086", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-03T11:00:00.000000-05:00", "pickupTime": "2019-10-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223787, "name": "CK-1087", "id": "CK-1087", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-10T11:00:00.000000-05:00", "pickupTime": "2019-10-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223790, "name": "CK-1088", "id": "CK-1088", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-17T11:00:00.000000-05:00", "pickupTime": "2019-10-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223793, "name": "CK-1089", "id": "CK-1089", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-24T11:00:00.000000-05:00", "pickupTime": "2019-10-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223796, "name": "CK-1090", "id": "CK-1090", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-31T11:00:00.000000-05:00", "pickupTime": "2019-10-31T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223799, "name": "CK-1091", "id": "CK-1091", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-07T11:00:00.000000-06:00", "pickupTime": "2019-11-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223802, "name": "CK-1092", "id": "CK-1092", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-14T11:00:00.000000-06:00", "pickupTime": "2019-11-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223805, "name": "CK-1093", "id": "CK-1093", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-21T11:00:00.000000-06:00", "pickupTime": "2019-11-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223808, "name": "CK-1094", "id": "CK-1094", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-28T11:00:00.000000-06:00", "pickupTime": "2019-11-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223811, "name": "CK-1095", "id": "CK-1095", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-05T11:00:00.000000-06:00", "pickupTime": "2019-12-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223814, "name": "CK-1096", "id": "CK-1096", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-12T11:00:00.000000-06:00", "pickupTime": "2019-12-12T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223817, "name": "CK-1097", "id": "CK-1097", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-19T11:00:00.000000-06:00", "pickupTime": "2019-12-19T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223820, "name": "CK-1098", "id": "CK-1098", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-26T11:00:00.000000-06:00", "pickupTime": "2019-12-26T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223823, "name": "CK-1099", "id": "CK-1099", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-02T11:00:00.000000-06:00", "pickupTime": "2020-01-02T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223826, "name": "CK-1100", "id": "CK-1100", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-09T11:00:00.000000-06:00", "pickupTime": "2020-01-09T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223829, "name": "CK-1101", "id": "CK-1101", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-16T11:00:00.000000-06:00", "pickupTime": "2020-01-16T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223832, "name": "CK-1102", "id": "CK-1102", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-23T11:00:00.000000-06:00", "pickupTime": "2020-01-23T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223835, "name": "CK-1103", "id": "CK-1103", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-30T11:00:00.000000-06:00", "pickupTime": "2020-01-30T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223838, "name": "CK-1104", "id": "CK-1104", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-06T11:00:00.000000-06:00", "pickupTime": "2020-02-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223841, "name": "CK-1105", "id": "CK-1105", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-13T11:00:00.000000-06:00", "pickupTime": "2020-02-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223844, "name": "CK-1106", "id": "CK-1106", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-20T11:00:00.000000-06:00", "pickupTime": "2020-02-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223847, "name": "CK-1107", "id": "CK-1107", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-27T11:00:00.000000-06:00", "pickupTime": "2020-02-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223850, "name": "CK-1108", "id": "CK-1108", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-05T11:00:00.000000-06:00", "pickupTime": "2020-03-05T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223853, "name": "CK-1109", "id": "CK-1109", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-12T11:00:00.000000-05:00", "pickupTime": "2020-03-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223856, "name": "CK-1110", "id": "CK-1110", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-19T11:00:00.000000-05:00", "pickupTime": "2020-03-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223859, "name": "CK-1111", "id": "CK-1111", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-26T11:00:00.000000-05:00", "pickupTime": "2020-03-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223862, "name": "CK-1112", "id": "CK-1112", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-02T11:00:00.000000-05:00", "pickupTime": "2020-04-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223865, "name": "CK-1113", "id": "CK-1113", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-09T11:00:00.000000-05:00", "pickupTime": "2020-04-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223868, "name": "CK-1114", "id": "CK-1114", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-16T11:00:00.000000-05:00", "pickupTime": "2020-04-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223871, "name": "CK-1115", "id": "CK-1115", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-23T11:00:00.000000-05:00", "pickupTime": "2020-04-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223874, "name": "CK-1116", "id": "CK-1116", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-30T11:00:00.000000-05:00", "pickupTime": "2020-04-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223883, "name": "CK-1117", "id": "CK-1117", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-30T11:00:00.000000-05:00", "pickupTime": "2019-08-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223886, "name": "CK-1118", "id": "CK-1118", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-06T11:00:00.000000-05:00", "pickupTime": "2019-09-06T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223889, "name": "CK-1119", "id": "CK-1119", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-13T11:00:00.000000-05:00", "pickupTime": "2019-09-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223892, "name": "CK-1120", "id": "CK-1120", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-20T11:00:00.000000-05:00", "pickupTime": "2019-09-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223895, "name": "CK-1121", "id": "CK-1121", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-27T11:00:00.000000-05:00", "pickupTime": "2019-09-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223898, "name": "CK-1122", "id": "CK-1122", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-04T11:00:00.000000-05:00", "pickupTime": "2019-10-04T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223901, "name": "CK-1123", "id": "CK-1123", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-11T11:00:00.000000-05:00", "pickupTime": "2019-10-11T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223904, "name": "CK-1124", "id": "CK-1124", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-18T11:00:00.000000-05:00", "pickupTime": "2019-10-18T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223907, "name": "CK-1125", "id": "CK-1125", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-25T11:00:00.000000-05:00", "pickupTime": "2019-10-25T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223910, "name": "CK-1126", "id": "CK-1126", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-01T11:00:00.000000-05:00", "pickupTime": "2019-11-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223913, "name": "CK-1127", "id": "CK-1127", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-08T11:00:00.000000-06:00", "pickupTime": "2019-11-08T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223916, "name": "CK-1128", "id": "CK-1128", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-15T11:00:00.000000-06:00", "pickupTime": "2019-11-15T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223919, "name": "CK-1129", "id": "CK-1129", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-22T11:00:00.000000-06:00", "pickupTime": "2019-11-22T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223922, "name": "CK-1130", "id": "CK-1130", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-29T11:00:00.000000-06:00", "pickupTime": "2019-11-29T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223925, "name": "CK-1131", "id": "CK-1131", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-06T11:00:00.000000-06:00", "pickupTime": "2019-12-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223928, "name": "CK-1132", "id": "CK-1132", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-13T11:00:00.000000-06:00", "pickupTime": "2019-12-13T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223931, "name": "CK-1133", "id": "CK-1133", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-20T11:00:00.000000-06:00", "pickupTime": "2019-12-20T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223934, "name": "CK-1134", "id": "CK-1134", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-27T11:00:00.000000-06:00", "pickupTime": "2019-12-27T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223937, "name": "CK-1135", "id": "CK-1135", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-03T11:00:00.000000-06:00", "pickupTime": "2020-01-03T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223940, "name": "CK-1136", "id": "CK-1136", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-10T11:00:00.000000-06:00", "pickupTime": "2020-01-10T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223943, "name": "CK-1137", "id": "CK-1137", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-17T11:00:00.000000-06:00", "pickupTime": "2020-01-17T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223946, "name": "CK-1138", "id": "CK-1138", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-24T11:00:00.000000-06:00", "pickupTime": "2020-01-24T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223949, "name": "CK-1139", "id": "CK-1139", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-31T11:00:00.000000-06:00", "pickupTime": "2020-01-31T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223952, "name": "CK-1140", "id": "CK-1140", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-07T11:00:00.000000-06:00", "pickupTime": "2020-02-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223956, "name": "CK-1141", "id": "CK-1141", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-14T11:00:00.000000-06:00", "pickupTime": "2020-02-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223959, "name": "CK-1142", "id": "CK-1142", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-21T11:00:00.000000-06:00", "pickupTime": "2020-02-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223962, "name": "CK-1143", "id": "CK-1143", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-28T11:00:00.000000-06:00", "pickupTime": "2020-02-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223965, "name": "CK-1144", "id": "CK-1144", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-06T11:00:00.000000-06:00", "pickupTime": "2020-03-06T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223968, "name": "CK-1145", "id": "CK-1145", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-13T11:00:00.000000-05:00", "pickupTime": "2020-03-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223971, "name": "CK-1146", "id": "CK-1146", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-20T11:00:00.000000-05:00", "pickupTime": "2020-03-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223974, "name": "CK-1147", "id": "CK-1147", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-27T11:00:00.000000-05:00", "pickupTime": "2020-03-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223977, "name": "CK-1148", "id": "CK-1148", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-03T11:00:00.000000-05:00", "pickupTime": "2020-04-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223980, "name": "CK-1149", "id": "CK-1149", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-10T11:00:00.000000-05:00", "pickupTime": "2020-04-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223983, "name": "CK-1150", "id": "CK-1150", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-17T11:00:00.000000-05:00", "pickupTime": "2020-04-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 223986, "name": "CK-1151", "id": "CK-1151", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-24T11:00:00.000000-05:00", "pickupTime": "2020-04-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224001, "name": "CK-1152", "id": "CK-1152", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-31T11:00:00.000000-05:00", "pickupTime": "2019-08-31T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224004, "name": "CK-1153", "id": "CK-1153", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-07T11:00:00.000000-05:00", "pickupTime": "2019-09-07T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224007, "name": "CK-1154", "id": "CK-1154", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-14T11:00:00.000000-05:00", "pickupTime": "2019-09-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224010, "name": "CK-1155", "id": "CK-1155", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-21T11:00:00.000000-05:00", "pickupTime": "2019-09-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224013, "name": "CK-1156", "id": "CK-1156", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-28T11:00:00.000000-05:00", "pickupTime": "2019-09-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224016, "name": "CK-1157", "id": "CK-1157", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-05T11:00:00.000000-05:00", "pickupTime": "2019-10-05T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224019, "name": "CK-1158", "id": "CK-1158", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-12T11:00:00.000000-05:00", "pickupTime": "2019-10-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224022, "name": "CK-1159", "id": "CK-1159", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-19T11:00:00.000000-05:00", "pickupTime": "2019-10-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224025, "name": "CK-1160", "id": "CK-1160", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-26T11:00:00.000000-05:00", "pickupTime": "2019-10-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224028, "name": "CK-1161", "id": "CK-1161", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-02T11:00:00.000000-05:00", "pickupTime": "2019-11-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224031, "name": "CK-1162", "id": "CK-1162", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-09T11:00:00.000000-06:00", "pickupTime": "2019-11-09T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224034, "name": "CK-1163", "id": "CK-1163", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-16T11:00:00.000000-06:00", "pickupTime": "2019-11-16T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224037, "name": "CK-1164", "id": "CK-1164", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-23T11:00:00.000000-06:00", "pickupTime": "2019-11-23T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224040, "name": "CK-1165", "id": "CK-1165", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-30T11:00:00.000000-06:00", "pickupTime": "2019-11-30T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224043, "name": "CK-1166", "id": "CK-1166", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-07T11:00:00.000000-06:00", "pickupTime": "2019-12-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224046, "name": "CK-1167", "id": "CK-1167", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-14T11:00:00.000000-06:00", "pickupTime": "2019-12-14T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224049, "name": "CK-1168", "id": "CK-1168", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-21T11:00:00.000000-06:00", "pickupTime": "2019-12-21T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224052, "name": "CK-1169", "id": "CK-1169", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-28T11:00:00.000000-06:00", "pickupTime": "2019-12-28T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224055, "name": "CK-1170", "id": "CK-1170", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-04T11:00:00.000000-06:00", "pickupTime": "2020-01-04T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224058, "name": "CK-1171", "id": "CK-1171", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-11T11:00:00.000000-06:00", "pickupTime": "2020-01-11T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224061, "name": "CK-1172", "id": "CK-1172", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-18T11:00:00.000000-06:00", "pickupTime": "2020-01-18T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224064, "name": "CK-1173", "id": "CK-1173", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-25T11:00:00.000000-06:00", "pickupTime": "2020-01-25T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224067, "name": "CK-1174", "id": "CK-1174", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-01T11:00:00.000000-06:00", "pickupTime": "2020-02-01T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224070, "name": "CK-1175", "id": "CK-1175", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-08T11:00:00.000000-06:00", "pickupTime": "2020-02-08T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224073, "name": "CK-1176", "id": "CK-1176", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-15T11:00:00.000000-06:00", "pickupTime": "2020-02-15T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224076, "name": "CK-1177", "id": "CK-1177", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-22T11:00:00.000000-06:00", "pickupTime": "2020-02-22T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224079, "name": "CK-1178", "id": "CK-1178", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-29T11:00:00.000000-06:00", "pickupTime": "2020-02-29T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224082, "name": "CK-1179", "id": "CK-1179", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-07T11:00:00.000000-06:00", "pickupTime": "2020-03-07T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224085, "name": "CK-1180", "id": "CK-1180", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-14T11:00:00.000000-05:00", "pickupTime": "2020-03-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224088, "name": "CK-1181", "id": "CK-1181", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-21T11:00:00.000000-05:00", "pickupTime": "2020-03-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224091, "name": "CK-1182", "id": "CK-1182", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-28T11:00:00.000000-05:00", "pickupTime": "2020-03-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224094, "name": "CK-1183", "id": "CK-1183", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-04T11:00:00.000000-05:00", "pickupTime": "2020-04-04T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224097, "name": "CK-1184", "id": "CK-1184", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-11T11:00:00.000000-05:00", "pickupTime": "2020-04-11T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224100, "name": "CK-1185", "id": "CK-1185", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-18T11:00:00.000000-05:00", "pickupTime": "2020-04-18T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 224103, "name": "CK-1186", "id": "CK-1186", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-25T11:00:00.000000-05:00", "pickupTime": "2020-04-25T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 227086, "name": "CK-1187", "id": "CK-1187", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T18:30:00.000000-05:00", "pickupTime": "2019-08-23T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227148, "name": "CK-1188", "id": "CK-1188", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-01T18:30:00.000000-05:00", "pickupTime": "2019-09-01T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227151, "name": "CK-1189", "id": "CK-1189", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-08T18:30:00.000000-05:00", "pickupTime": "2019-09-08T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227154, "name": "CK-1190", "id": "CK-1190", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-15T18:30:00.000000-05:00", "pickupTime": "2019-09-15T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227157, "name": "CK-1191", "id": "CK-1191", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-22T18:30:00.000000-05:00", "pickupTime": "2019-09-22T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227160, "name": "CK-1192", "id": "CK-1192", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-29T18:30:00.000000-05:00", "pickupTime": "2019-09-29T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227163, "name": "CK-1193", "id": "CK-1193", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-06T18:30:00.000000-05:00", "pickupTime": "2019-10-06T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227166, "name": "CK-1194", "id": "CK-1194", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-13T18:30:00.000000-05:00", "pickupTime": "2019-10-13T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227169, "name": "CK-1195", "id": "CK-1195", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-20T18:30:00.000000-05:00", "pickupTime": "2019-10-20T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227172, "name": "CK-1196", "id": "CK-1196", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-27T18:30:00.000000-05:00", "pickupTime": "2019-10-27T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227175, "name": "CK-1197", "id": "CK-1197", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-03T18:30:00.000000-06:00", "pickupTime": "2019-11-03T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227178, "name": "CK-1198", "id": "CK-1198", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-10T18:30:00.000000-06:00", "pickupTime": "2019-11-10T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227181, "name": "CK-1199", "id": "CK-1199", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-17T18:30:00.000000-06:00", "pickupTime": "2019-11-17T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227184, "name": "CK-1200", "id": "CK-1200", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-24T18:30:00.000000-06:00", "pickupTime": "2019-11-24T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227187, "name": "CK-1201", "id": "CK-1201", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-01T18:30:00.000000-06:00", "pickupTime": "2019-12-01T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227191, "name": "CK-1202", "id": "CK-1202", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-08T18:30:00.000000-06:00", "pickupTime": "2019-12-08T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227194, "name": "CK-1203", "id": "CK-1203", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-15T18:30:00.000000-06:00", "pickupTime": "2019-12-15T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227197, "name": "CK-1204", "id": "CK-1204", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-22T18:30:00.000000-06:00", "pickupTime": "2019-12-22T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227200, "name": "CK-1205", "id": "CK-1205", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-29T18:30:00.000000-06:00", "pickupTime": "2019-12-29T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227203, "name": "CK-1206", "id": "CK-1206", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-05T18:30:00.000000-06:00", "pickupTime": "2020-01-05T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227206, "name": "CK-1207", "id": "CK-1207", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-12T18:30:00.000000-06:00", "pickupTime": "2020-01-12T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227209, "name": "CK-1208", "id": "CK-1208", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-19T18:30:00.000000-06:00", "pickupTime": "2020-01-19T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227212, "name": "CK-1209", "id": "CK-1209", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-26T18:30:00.000000-06:00", "pickupTime": "2020-01-26T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227215, "name": "CK-1210", "id": "CK-1210", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-02T18:30:00.000000-06:00", "pickupTime": "2020-02-02T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227218, "name": "CK-1211", "id": "CK-1211", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-09T18:30:00.000000-06:00", "pickupTime": "2020-02-09T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227222, "name": "CK-1212", "id": "CK-1212", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-16T18:30:00.000000-06:00", "pickupTime": "2020-02-16T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227225, "name": "CK-1213", "id": "CK-1213", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-23T18:30:00.000000-06:00", "pickupTime": "2020-02-23T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227228, "name": "CK-1214", "id": "CK-1214", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-01T18:30:00.000000-06:00", "pickupTime": "2020-03-01T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227231, "name": "CK-1215", "id": "CK-1215", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-08T18:30:00.000000-05:00", "pickupTime": "2020-03-08T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227234, "name": "CK-1216", "id": "CK-1216", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-15T18:30:00.000000-05:00", "pickupTime": "2020-03-15T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227237, "name": "CK-1217", "id": "CK-1217", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-22T18:30:00.000000-05:00", "pickupTime": "2020-03-22T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227240, "name": "CK-1218", "id": "CK-1218", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-29T18:30:00.000000-05:00", "pickupTime": "2020-03-29T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227243, "name": "CK-1219", "id": "CK-1219", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-05T18:30:00.000000-05:00", "pickupTime": "2020-04-05T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227246, "name": "CK-1220", "id": "CK-1220", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-12T18:30:00.000000-05:00", "pickupTime": "2020-04-12T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227249, "name": "CK-1221", "id": "CK-1221", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-19T18:30:00.000000-05:00", "pickupTime": "2020-04-19T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227252, "name": "CK-1222", "id": "CK-1222", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-26T18:30:00.000000-05:00", "pickupTime": "2020-04-26T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227261, "name": "CK-1223", "id": "CK-1223", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T18:30:00.000000-05:00", "pickupTime": "2019-09-02T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227264, "name": "CK-1224", "id": "CK-1224", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T18:30:00.000000-05:00", "pickupTime": "2019-09-09T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227267, "name": "CK-1225", "id": "CK-1225", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T18:30:00.000000-05:00", "pickupTime": "2019-09-16T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227270, "name": "CK-1226", "id": "CK-1226", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T18:30:00.000000-05:00", "pickupTime": "2019-09-23T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227273, "name": "CK-1227", "id": "CK-1227", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T18:30:00.000000-05:00", "pickupTime": "2019-09-30T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227276, "name": "CK-1228", "id": "CK-1228", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T18:30:00.000000-05:00", "pickupTime": "2019-10-07T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227279, "name": "CK-1229", "id": "CK-1229", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T18:30:00.000000-05:00", "pickupTime": "2019-10-14T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227282, "name": "CK-1230", "id": "CK-1230", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T18:30:00.000000-05:00", "pickupTime": "2019-10-21T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227285, "name": "CK-1231", "id": "CK-1231", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T18:30:00.000000-05:00", "pickupTime": "2019-10-28T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227288, "name": "CK-1232", "id": "CK-1232", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T18:30:00.000000-06:00", "pickupTime": "2019-11-04T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227291, "name": "CK-1233", "id": "CK-1233", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T18:30:00.000000-06:00", "pickupTime": "2019-11-11T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227294, "name": "CK-1234", "id": "CK-1234", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T18:30:00.000000-06:00", "pickupTime": "2019-11-18T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227297, "name": "CK-1235", "id": "CK-1235", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T18:30:00.000000-06:00", "pickupTime": "2019-11-25T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227300, "name": "CK-1236", "id": "CK-1236", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-02T18:30:00.000000-06:00", "pickupTime": "2019-12-02T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227303, "name": "CK-1237", "id": "CK-1237", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-09T18:30:00.000000-06:00", "pickupTime": "2019-12-09T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227306, "name": "CK-1238", "id": "CK-1238", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-16T18:30:00.000000-06:00", "pickupTime": "2019-12-16T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227309, "name": "CK-1239", "id": "CK-1239", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-23T18:30:00.000000-06:00", "pickupTime": "2019-12-23T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227312, "name": "CK-1240", "id": "CK-1240", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-30T18:30:00.000000-06:00", "pickupTime": "2019-12-30T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227315, "name": "CK-1241", "id": "CK-1241", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-06T18:30:00.000000-06:00", "pickupTime": "2020-01-06T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227318, "name": "CK-1242", "id": "CK-1242", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-13T18:30:00.000000-06:00", "pickupTime": "2020-01-13T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227321, "name": "CK-1243", "id": "CK-1243", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-20T18:30:00.000000-06:00", "pickupTime": "2020-01-20T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227324, "name": "CK-1244", "id": "CK-1244", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-27T18:30:00.000000-06:00", "pickupTime": "2020-01-27T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227327, "name": "CK-1245", "id": "CK-1245", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-03T18:30:00.000000-06:00", "pickupTime": "2020-02-03T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227330, "name": "CK-1246", "id": "CK-1246", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-10T18:30:00.000000-06:00", "pickupTime": "2020-02-10T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227333, "name": "CK-1247", "id": "CK-1247", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-17T18:30:00.000000-06:00", "pickupTime": "2020-02-17T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227336, "name": "CK-1248", "id": "CK-1248", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-24T18:30:00.000000-06:00", "pickupTime": "2020-02-24T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227339, "name": "CK-1249", "id": "CK-1249", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-02T18:30:00.000000-06:00", "pickupTime": "2020-03-02T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227342, "name": "CK-1250", "id": "CK-1250", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-09T18:30:00.000000-05:00", "pickupTime": "2020-03-09T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227345, "name": "CK-1251", "id": "CK-1251", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-16T18:30:00.000000-05:00", "pickupTime": "2020-03-16T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227348, "name": "CK-1252", "id": "CK-1252", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-23T18:30:00.000000-05:00", "pickupTime": "2020-03-23T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227351, "name": "CK-1253", "id": "CK-1253", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-30T18:30:00.000000-05:00", "pickupTime": "2020-03-30T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227354, "name": "CK-1254", "id": "CK-1254", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-06T18:30:00.000000-05:00", "pickupTime": "2020-04-06T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227357, "name": "CK-1255", "id": "CK-1255", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-13T18:30:00.000000-05:00", "pickupTime": "2020-04-13T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227360, "name": "CK-1256", "id": "CK-1256", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-20T18:30:00.000000-05:00", "pickupTime": "2020-04-20T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227363, "name": "CK-1257", "id": "CK-1257", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-27T18:30:00.000000-05:00", "pickupTime": "2020-04-27T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227373, "name": "CK-1258", "id": "CK-1258", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T18:30:00.000000-05:00", "pickupTime": "2019-09-03T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227376, "name": "CK-1259", "id": "CK-1259", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T18:30:00.000000-05:00", "pickupTime": "2019-09-10T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227379, "name": "CK-1260", "id": "CK-1260", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T18:30:00.000000-05:00", "pickupTime": "2019-09-17T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227382, "name": "CK-1261", "id": "CK-1261", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T18:30:00.000000-05:00", "pickupTime": "2019-09-24T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227385, "name": "CK-1262", "id": "CK-1262", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-01T18:30:00.000000-05:00", "pickupTime": "2019-10-01T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227388, "name": "CK-1263", "id": "CK-1263", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-08T18:30:00.000000-05:00", "pickupTime": "2019-10-08T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227391, "name": "CK-1264", "id": "CK-1264", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-15T18:30:00.000000-05:00", "pickupTime": "2019-10-15T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227394, "name": "CK-1265", "id": "CK-1265", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-22T18:30:00.000000-05:00", "pickupTime": "2019-10-22T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227397, "name": "CK-1266", "id": "CK-1266", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-29T18:30:00.000000-05:00", "pickupTime": "2019-10-29T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227400, "name": "CK-1267", "id": "CK-1267", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-05T18:30:00.000000-06:00", "pickupTime": "2019-11-05T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227403, "name": "CK-1268", "id": "CK-1268", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-12T18:30:00.000000-06:00", "pickupTime": "2019-11-12T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227406, "name": "CK-1269", "id": "CK-1269", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-19T18:30:00.000000-06:00", "pickupTime": "2019-11-19T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227409, "name": "CK-1270", "id": "CK-1270", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-26T18:30:00.000000-06:00", "pickupTime": "2019-11-26T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227412, "name": "CK-1271", "id": "CK-1271", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-03T18:30:00.000000-06:00", "pickupTime": "2019-12-03T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227415, "name": "CK-1272", "id": "CK-1272", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-10T18:30:00.000000-06:00", "pickupTime": "2019-12-10T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227418, "name": "CK-1273", "id": "CK-1273", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-17T18:30:00.000000-06:00", "pickupTime": "2019-12-17T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227421, "name": "CK-1274", "id": "CK-1274", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-24T18:30:00.000000-06:00", "pickupTime": "2019-12-24T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227424, "name": "CK-1275", "id": "CK-1275", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-31T18:30:00.000000-06:00", "pickupTime": "2019-12-31T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227427, "name": "CK-1276", "id": "CK-1276", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-07T18:30:00.000000-06:00", "pickupTime": "2020-01-07T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227430, "name": "CK-1277", "id": "CK-1277", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-14T18:30:00.000000-06:00", "pickupTime": "2020-01-14T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227433, "name": "CK-1278", "id": "CK-1278", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-21T18:30:00.000000-06:00", "pickupTime": "2020-01-21T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227436, "name": "CK-1279", "id": "CK-1279", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-28T18:30:00.000000-06:00", "pickupTime": "2020-01-28T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227439, "name": "CK-1280", "id": "CK-1280", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-04T18:30:00.000000-06:00", "pickupTime": "2020-02-04T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227442, "name": "CK-1281", "id": "CK-1281", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-11T18:30:00.000000-06:00", "pickupTime": "2020-02-11T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227445, "name": "CK-1282", "id": "CK-1282", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-18T18:30:00.000000-06:00", "pickupTime": "2020-02-18T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227448, "name": "CK-1283", "id": "CK-1283", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-25T18:30:00.000000-06:00", "pickupTime": "2020-02-25T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227452, "name": "CK-1284", "id": "CK-1284", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-03T18:30:00.000000-06:00", "pickupTime": "2020-03-03T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227455, "name": "CK-1285", "id": "CK-1285", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-10T18:30:00.000000-05:00", "pickupTime": "2020-03-10T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227458, "name": "CK-1286", "id": "CK-1286", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-17T18:30:00.000000-05:00", "pickupTime": "2020-03-17T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227461, "name": "CK-1287", "id": "CK-1287", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-24T18:30:00.000000-05:00", "pickupTime": "2020-03-24T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227464, "name": "CK-1288", "id": "CK-1288", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-31T18:30:00.000000-05:00", "pickupTime": "2020-03-31T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227467, "name": "CK-1289", "id": "CK-1289", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-07T18:30:00.000000-05:00", "pickupTime": "2020-04-07T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227470, "name": "CK-1290", "id": "CK-1290", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-14T18:30:00.000000-05:00", "pickupTime": "2020-04-14T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227473, "name": "CK-1291", "id": "CK-1291", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-21T18:30:00.000000-05:00", "pickupTime": "2020-04-21T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227476, "name": "CK-1292", "id": "CK-1292", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-28T18:30:00.000000-05:00", "pickupTime": "2020-04-28T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227490, "name": "CK-1293", "id": "CK-1293", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-04T18:30:00.000000-05:00", "pickupTime": "2019-09-04T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227493, "name": "CK-1294", "id": "CK-1294", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-11T18:30:00.000000-05:00", "pickupTime": "2019-09-11T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227496, "name": "CK-1295", "id": "CK-1295", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-18T18:30:00.000000-05:00", "pickupTime": "2019-09-18T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227499, "name": "CK-1296", "id": "CK-1296", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-25T18:30:00.000000-05:00", "pickupTime": "2019-09-25T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227502, "name": "CK-1297", "id": "CK-1297", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-02T18:30:00.000000-05:00", "pickupTime": "2019-10-02T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227505, "name": "CK-1298", "id": "CK-1298", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-09T18:30:00.000000-05:00", "pickupTime": "2019-10-09T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227508, "name": "CK-1299", "id": "CK-1299", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-16T18:30:00.000000-05:00", "pickupTime": "2019-10-16T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227511, "name": "CK-1300", "id": "CK-1300", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-23T18:30:00.000000-05:00", "pickupTime": "2019-10-23T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227514, "name": "CK-1301", "id": "CK-1301", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-30T18:30:00.000000-05:00", "pickupTime": "2019-10-30T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227517, "name": "CK-1302", "id": "CK-1302", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-06T18:30:00.000000-06:00", "pickupTime": "2019-11-06T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227520, "name": "CK-1303", "id": "CK-1303", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-13T18:30:00.000000-06:00", "pickupTime": "2019-11-13T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227523, "name": "CK-1304", "id": "CK-1304", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-20T18:30:00.000000-06:00", "pickupTime": "2019-11-20T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227526, "name": "CK-1305", "id": "CK-1305", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-27T18:30:00.000000-06:00", "pickupTime": "2019-11-27T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227529, "name": "CK-1306", "id": "CK-1306", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-04T18:30:00.000000-06:00", "pickupTime": "2019-12-04T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227532, "name": "CK-1307", "id": "CK-1307", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-11T18:30:00.000000-06:00", "pickupTime": "2019-12-11T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227535, "name": "CK-1308", "id": "CK-1308", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-18T18:30:00.000000-06:00", "pickupTime": "2019-12-18T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227538, "name": "CK-1309", "id": "CK-1309", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-25T18:30:00.000000-06:00", "pickupTime": "2019-12-25T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227541, "name": "CK-1310", "id": "CK-1310", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-01T18:30:00.000000-06:00", "pickupTime": "2020-01-01T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227544, "name": "CK-1311", "id": "CK-1311", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-08T18:30:00.000000-06:00", "pickupTime": "2020-01-08T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227547, "name": "CK-1312", "id": "CK-1312", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-15T18:30:00.000000-06:00", "pickupTime": "2020-01-15T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227550, "name": "CK-1313", "id": "CK-1313", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-22T18:30:00.000000-06:00", "pickupTime": "2020-01-22T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227553, "name": "CK-1314", "id": "CK-1314", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-29T18:30:00.000000-06:00", "pickupTime": "2020-01-29T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227556, "name": "CK-1315", "id": "CK-1315", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-05T18:30:00.000000-06:00", "pickupTime": "2020-02-05T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227559, "name": "CK-1316", "id": "CK-1316", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-12T18:30:00.000000-06:00", "pickupTime": "2020-02-12T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227562, "name": "CK-1317", "id": "CK-1317", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-19T18:30:00.000000-06:00", "pickupTime": "2020-02-19T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227565, "name": "CK-1318", "id": "CK-1318", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-26T18:30:00.000000-06:00", "pickupTime": "2020-02-26T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227568, "name": "CK-1319", "id": "CK-1319", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-04T18:30:00.000000-06:00", "pickupTime": "2020-03-04T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227571, "name": "CK-1320", "id": "CK-1320", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-11T18:30:00.000000-05:00", "pickupTime": "2020-03-11T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227574, "name": "CK-1321", "id": "CK-1321", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-18T18:30:00.000000-05:00", "pickupTime": "2020-03-18T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227577, "name": "CK-1322", "id": "CK-1322", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-25T18:30:00.000000-05:00", "pickupTime": "2020-03-25T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227580, "name": "CK-1323", "id": "CK-1323", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-01T18:30:00.000000-05:00", "pickupTime": "2020-04-01T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227583, "name": "CK-1324", "id": "CK-1324", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-08T18:30:00.000000-05:00", "pickupTime": "2020-04-08T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227586, "name": "CK-1325", "id": "CK-1325", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-15T18:30:00.000000-05:00", "pickupTime": "2020-04-15T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227589, "name": "CK-1326", "id": "CK-1326", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-22T18:30:00.000000-05:00", "pickupTime": "2020-04-22T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227592, "name": "CK-1327", "id": "CK-1327", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-29T18:30:00.000000-05:00", "pickupTime": "2020-04-29T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227602, "name": "CK-1328", "id": "CK-1328", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-05T18:30:00.000000-05:00", "pickupTime": "2019-09-05T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227605, "name": "CK-1329", "id": "CK-1329", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-12T18:30:00.000000-05:00", "pickupTime": "2019-09-12T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227608, "name": "CK-1330", "id": "CK-1330", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-19T18:30:00.000000-05:00", "pickupTime": "2019-09-19T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227611, "name": "CK-1331", "id": "CK-1331", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-26T18:30:00.000000-05:00", "pickupTime": "2019-09-26T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227614, "name": "CK-1332", "id": "CK-1332", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-03T18:30:00.000000-05:00", "pickupTime": "2019-10-03T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227617, "name": "CK-1333", "id": "CK-1333", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-10T18:30:00.000000-05:00", "pickupTime": "2019-10-10T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227620, "name": "CK-1334", "id": "CK-1334", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-17T18:30:00.000000-05:00", "pickupTime": "2019-10-17T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227623, "name": "CK-1335", "id": "CK-1335", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-24T18:30:00.000000-05:00", "pickupTime": "2019-10-24T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227626, "name": "CK-1336", "id": "CK-1336", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-31T18:30:00.000000-05:00", "pickupTime": "2019-10-31T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227629, "name": "CK-1337", "id": "CK-1337", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-07T18:30:00.000000-06:00", "pickupTime": "2019-11-07T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227632, "name": "CK-1338", "id": "CK-1338", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-14T18:30:00.000000-06:00", "pickupTime": "2019-11-14T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227635, "name": "CK-1339", "id": "CK-1339", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-21T18:30:00.000000-06:00", "pickupTime": "2019-11-21T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227638, "name": "CK-1340", "id": "CK-1340", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-28T18:30:00.000000-06:00", "pickupTime": "2019-11-28T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227641, "name": "CK-1341", "id": "CK-1341", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-05T18:30:00.000000-06:00", "pickupTime": "2019-12-05T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227644, "name": "CK-1342", "id": "CK-1342", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-12T18:30:00.000000-06:00", "pickupTime": "2019-12-12T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227647, "name": "CK-1343", "id": "CK-1343", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-19T18:30:00.000000-06:00", "pickupTime": "2019-12-19T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227650, "name": "CK-1344", "id": "CK-1344", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-26T18:30:00.000000-06:00", "pickupTime": "2019-12-26T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227653, "name": "CK-1345", "id": "CK-1345", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-02T18:30:00.000000-06:00", "pickupTime": "2020-01-02T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227656, "name": "CK-1346", "id": "CK-1346", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-09T18:30:00.000000-06:00", "pickupTime": "2020-01-09T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227659, "name": "CK-1347", "id": "CK-1347", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-16T18:30:00.000000-06:00", "pickupTime": "2020-01-16T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227662, "name": "CK-1348", "id": "CK-1348", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-23T18:30:00.000000-06:00", "pickupTime": "2020-01-23T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227665, "name": "CK-1349", "id": "CK-1349", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-30T18:30:00.000000-06:00", "pickupTime": "2020-01-30T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227668, "name": "CK-1350", "id": "CK-1350", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-06T18:30:00.000000-06:00", "pickupTime": "2020-02-06T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227671, "name": "CK-1351", "id": "CK-1351", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-13T18:30:00.000000-06:00", "pickupTime": "2020-02-13T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227674, "name": "CK-1352", "id": "CK-1352", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-20T18:30:00.000000-06:00", "pickupTime": "2020-02-20T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227677, "name": "CK-1353", "id": "CK-1353", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-27T18:30:00.000000-06:00", "pickupTime": "2020-02-27T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227680, "name": "CK-1354", "id": "CK-1354", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-05T18:30:00.000000-06:00", "pickupTime": "2020-03-05T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227683, "name": "CK-1355", "id": "CK-1355", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-12T18:30:00.000000-05:00", "pickupTime": "2020-03-12T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227686, "name": "CK-1356", "id": "CK-1356", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-19T18:30:00.000000-05:00", "pickupTime": "2020-03-19T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227689, "name": "CK-1357", "id": "CK-1357", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-26T18:30:00.000000-05:00", "pickupTime": "2020-03-26T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227692, "name": "CK-1358", "id": "CK-1358", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-02T18:30:00.000000-05:00", "pickupTime": "2020-04-02T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227695, "name": "CK-1359", "id": "CK-1359", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-09T18:30:00.000000-05:00", "pickupTime": "2020-04-09T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227698, "name": "CK-1360", "id": "CK-1360", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-16T18:30:00.000000-05:00", "pickupTime": "2020-04-16T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227701, "name": "CK-1361", "id": "CK-1361", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-23T18:30:00.000000-05:00", "pickupTime": "2020-04-23T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227704, "name": "CK-1362", "id": "CK-1362", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-30T18:30:00.000000-05:00", "pickupTime": "2020-04-30T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227716, "name": "CK-1363", "id": "CK-1363", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-30T18:30:00.000000-05:00", "pickupTime": "2019-08-30T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227719, "name": "CK-1364", "id": "CK-1364", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-06T18:30:00.000000-05:00", "pickupTime": "2019-09-06T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227722, "name": "CK-1365", "id": "CK-1365", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-13T18:30:00.000000-05:00", "pickupTime": "2019-09-13T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227725, "name": "CK-1366", "id": "CK-1366", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-20T18:30:00.000000-05:00", "pickupTime": "2019-09-20T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227728, "name": "CK-1367", "id": "CK-1367", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-27T18:30:00.000000-05:00", "pickupTime": "2019-09-27T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227731, "name": "CK-1368", "id": "CK-1368", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-04T18:30:00.000000-05:00", "pickupTime": "2019-10-04T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227734, "name": "CK-1369", "id": "CK-1369", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-11T18:30:00.000000-05:00", "pickupTime": "2019-10-11T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227737, "name": "CK-1370", "id": "CK-1370", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-18T18:30:00.000000-05:00", "pickupTime": "2019-10-18T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227740, "name": "CK-1371", "id": "CK-1371", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-25T18:30:00.000000-05:00", "pickupTime": "2019-10-25T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227744, "name": "CK-1372", "id": "CK-1372", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-01T18:30:00.000000-05:00", "pickupTime": "2019-11-01T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227747, "name": "CK-1373", "id": "CK-1373", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-08T18:30:00.000000-06:00", "pickupTime": "2019-11-08T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227750, "name": "CK-1374", "id": "CK-1374", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-15T18:30:00.000000-06:00", "pickupTime": "2019-11-15T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227753, "name": "CK-1375", "id": "CK-1375", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-22T18:30:00.000000-06:00", "pickupTime": "2019-11-22T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227756, "name": "CK-1376", "id": "CK-1376", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-29T18:30:00.000000-06:00", "pickupTime": "2019-11-29T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227759, "name": "CK-1377", "id": "CK-1377", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-06T18:30:00.000000-06:00", "pickupTime": "2019-12-06T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227762, "name": "CK-1378", "id": "CK-1378", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-13T18:30:00.000000-06:00", "pickupTime": "2019-12-13T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227765, "name": "CK-1379", "id": "CK-1379", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-20T18:30:00.000000-06:00", "pickupTime": "2019-12-20T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227768, "name": "CK-1380", "id": "CK-1380", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-27T18:30:00.000000-06:00", "pickupTime": "2019-12-27T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227772, "name": "CK-1381", "id": "CK-1381", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-03T18:30:00.000000-06:00", "pickupTime": "2020-01-03T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227775, "name": "CK-1382", "id": "CK-1382", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-10T18:30:00.000000-06:00", "pickupTime": "2020-01-10T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227778, "name": "CK-1383", "id": "CK-1383", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-17T18:30:00.000000-06:00", "pickupTime": "2020-01-17T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227781, "name": "CK-1384", "id": "CK-1384", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-24T18:30:00.000000-06:00", "pickupTime": "2020-01-24T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227784, "name": "CK-1385", "id": "CK-1385", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-31T18:30:00.000000-06:00", "pickupTime": "2020-01-31T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227787, "name": "CK-1386", "id": "CK-1386", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-07T18:30:00.000000-06:00", "pickupTime": "2020-02-07T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227790, "name": "CK-1387", "id": "CK-1387", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-14T18:30:00.000000-06:00", "pickupTime": "2020-02-14T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227793, "name": "CK-1388", "id": "CK-1388", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-21T18:30:00.000000-06:00", "pickupTime": "2020-02-21T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227796, "name": "CK-1389", "id": "CK-1389", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-28T18:30:00.000000-06:00", "pickupTime": "2020-02-28T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227799, "name": "CK-1390", "id": "CK-1390", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-06T18:30:00.000000-06:00", "pickupTime": "2020-03-06T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227802, "name": "CK-1391", "id": "CK-1391", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-13T18:30:00.000000-05:00", "pickupTime": "2020-03-13T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227805, "name": "CK-1392", "id": "CK-1392", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-20T18:30:00.000000-05:00", "pickupTime": "2020-03-20T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227808, "name": "CK-1393", "id": "CK-1393", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-27T18:30:00.000000-05:00", "pickupTime": "2020-03-27T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227811, "name": "CK-1394", "id": "CK-1394", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-03T18:30:00.000000-05:00", "pickupTime": "2020-04-03T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227814, "name": "CK-1395", "id": "CK-1395", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-10T18:30:00.000000-05:00", "pickupTime": "2020-04-10T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227817, "name": "CK-1396", "id": "CK-1396", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-17T18:30:00.000000-05:00", "pickupTime": "2020-04-17T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227820, "name": "CK-1397", "id": "CK-1397", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-24T18:30:00.000000-05:00", "pickupTime": "2020-04-24T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227835, "name": "CK-1398", "id": "CK-1398", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-31T18:30:00.000000-05:00", "pickupTime": "2019-08-31T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227838, "name": "CK-1399", "id": "CK-1399", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-07T18:30:00.000000-05:00", "pickupTime": "2019-09-07T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227841, "name": "CK-1400", "id": "CK-1400", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-14T18:30:00.000000-05:00", "pickupTime": "2019-09-14T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227844, "name": "CK-1401", "id": "CK-1401", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-21T18:30:00.000000-05:00", "pickupTime": "2019-09-21T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227847, "name": "CK-1402", "id": "CK-1402", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-28T18:30:00.000000-05:00", "pickupTime": "2019-09-28T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227850, "name": "CK-1403", "id": "CK-1403", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-05T18:30:00.000000-05:00", "pickupTime": "2019-10-05T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227853, "name": "CK-1404", "id": "CK-1404", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-12T18:30:00.000000-05:00", "pickupTime": "2019-10-12T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227856, "name": "CK-1405", "id": "CK-1405", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-19T18:30:00.000000-05:00", "pickupTime": "2019-10-19T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227859, "name": "CK-1406", "id": "CK-1406", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-26T18:30:00.000000-05:00", "pickupTime": "2019-10-26T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227862, "name": "CK-1407", "id": "CK-1407", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-02T18:30:00.000000-05:00", "pickupTime": "2019-11-02T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227865, "name": "CK-1408", "id": "CK-1408", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-09T18:30:00.000000-06:00", "pickupTime": "2019-11-09T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227868, "name": "CK-1409", "id": "CK-1409", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-16T18:30:00.000000-06:00", "pickupTime": "2019-11-16T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227871, "name": "CK-1410", "id": "CK-1410", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-23T18:30:00.000000-06:00", "pickupTime": "2019-11-23T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227874, "name": "CK-1411", "id": "CK-1411", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-30T18:30:00.000000-06:00", "pickupTime": "2019-11-30T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227877, "name": "CK-1412", "id": "CK-1412", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-07T18:30:00.000000-06:00", "pickupTime": "2019-12-07T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227880, "name": "CK-1413", "id": "CK-1413", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-14T18:30:00.000000-06:00", "pickupTime": "2019-12-14T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227883, "name": "CK-1414", "id": "CK-1414", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-21T18:30:00.000000-06:00", "pickupTime": "2019-12-21T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227886, "name": "CK-1415", "id": "CK-1415", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-28T18:30:00.000000-06:00", "pickupTime": "2019-12-28T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227889, "name": "CK-1416", "id": "CK-1416", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-04T18:30:00.000000-06:00", "pickupTime": "2020-01-04T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227892, "name": "CK-1417", "id": "CK-1417", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-11T18:30:00.000000-06:00", "pickupTime": "2020-01-11T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227895, "name": "CK-1418", "id": "CK-1418", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-18T18:30:00.000000-06:00", "pickupTime": "2020-01-18T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227898, "name": "CK-1419", "id": "CK-1419", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-25T18:30:00.000000-06:00", "pickupTime": "2020-01-25T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227901, "name": "CK-1420", "id": "CK-1420", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-01T18:30:00.000000-06:00", "pickupTime": "2020-02-01T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227904, "name": "CK-1421", "id": "CK-1421", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-08T18:30:00.000000-06:00", "pickupTime": "2020-02-08T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227907, "name": "CK-1422", "id": "CK-1422", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-15T18:30:00.000000-06:00", "pickupTime": "2020-02-15T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227910, "name": "CK-1423", "id": "CK-1423", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-22T18:30:00.000000-06:00", "pickupTime": "2020-02-22T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227913, "name": "CK-1424", "id": "CK-1424", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-29T18:30:00.000000-06:00", "pickupTime": "2020-02-29T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227916, "name": "CK-1425", "id": "CK-1425", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-07T18:30:00.000000-06:00", "pickupTime": "2020-03-07T17:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227919, "name": "CK-1426", "id": "CK-1426", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-14T18:30:00.000000-05:00", "pickupTime": "2020-03-14T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227922, "name": "CK-1427", "id": "CK-1427", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-21T18:30:00.000000-05:00", "pickupTime": "2020-03-21T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227925, "name": "CK-1428", "id": "CK-1428", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-28T18:30:00.000000-05:00", "pickupTime": "2020-03-28T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227928, "name": "CK-1429", "id": "CK-1429", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-04T18:30:00.000000-05:00", "pickupTime": "2020-04-04T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227931, "name": "CK-1430", "id": "CK-1430", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-11T18:30:00.000000-05:00", "pickupTime": "2020-04-11T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227934, "name": "CK-1431", "id": "CK-1431", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-18T18:30:00.000000-05:00", "pickupTime": "2020-04-18T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 227937, "name": "CK-1432", "id": "CK-1432", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-25T18:30:00.000000-05:00", "pickupTime": "2020-04-25T17:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4546, "name": "John Carter", "userid": "johncarter", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 230928, "name": "CK-1433", "id": "CK-1433", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T15:00:00.000000-05:00", "pickupTime": "2019-08-23T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 230988, "name": "CK-1434", "id": "CK-1434", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-01T15:00:00.000000-05:00", "pickupTime": "2019-09-01T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 230991, "name": "CK-1435", "id": "CK-1435", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-08T15:00:00.000000-05:00", "pickupTime": "2019-09-08T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 230994, "name": "CK-1436", "id": "CK-1436", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-15T15:00:00.000000-05:00", "pickupTime": "2019-09-15T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 230997, "name": "CK-1437", "id": "CK-1437", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-22T15:00:00.000000-05:00", "pickupTime": "2019-09-22T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231000, "name": "CK-1438", "id": "CK-1438", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-29T15:00:00.000000-05:00", "pickupTime": "2019-09-29T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231003, "name": "CK-1439", "id": "CK-1439", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-06T15:00:00.000000-05:00", "pickupTime": "2019-10-06T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231006, "name": "CK-1440", "id": "CK-1440", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-13T15:00:00.000000-05:00", "pickupTime": "2019-10-13T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231009, "name": "CK-1441", "id": "CK-1441", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-20T15:00:00.000000-05:00", "pickupTime": "2019-10-20T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231012, "name": "CK-1442", "id": "CK-1442", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-27T15:00:00.000000-05:00", "pickupTime": "2019-10-27T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231015, "name": "CK-1443", "id": "CK-1443", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-03T15:00:00.000000-06:00", "pickupTime": "2019-11-03T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231018, "name": "CK-1444", "id": "CK-1444", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-10T15:00:00.000000-06:00", "pickupTime": "2019-11-10T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231021, "name": "CK-1445", "id": "CK-1445", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-17T15:00:00.000000-06:00", "pickupTime": "2019-11-17T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231024, "name": "CK-1446", "id": "CK-1446", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-24T15:00:00.000000-06:00", "pickupTime": "2019-11-24T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231027, "name": "CK-1447", "id": "CK-1447", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-01T15:00:00.000000-06:00", "pickupTime": "2019-12-01T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231030, "name": "CK-1448", "id": "CK-1448", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-08T15:00:00.000000-06:00", "pickupTime": "2019-12-08T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231033, "name": "CK-1449", "id": "CK-1449", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-15T15:00:00.000000-06:00", "pickupTime": "2019-12-15T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231036, "name": "CK-1450", "id": "CK-1450", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-22T15:00:00.000000-06:00", "pickupTime": "2019-12-22T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231039, "name": "CK-1451", "id": "CK-1451", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-29T15:00:00.000000-06:00", "pickupTime": "2019-12-29T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231042, "name": "CK-1452", "id": "CK-1452", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-05T15:00:00.000000-06:00", "pickupTime": "2020-01-05T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231045, "name": "CK-1453", "id": "CK-1453", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-12T15:00:00.000000-06:00", "pickupTime": "2020-01-12T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231048, "name": "CK-1454", "id": "CK-1454", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-19T15:00:00.000000-06:00", "pickupTime": "2020-01-19T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231051, "name": "CK-1455", "id": "CK-1455", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-26T15:00:00.000000-06:00", "pickupTime": "2020-01-26T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231054, "name": "CK-1456", "id": "CK-1456", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-02T15:00:00.000000-06:00", "pickupTime": "2020-02-02T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231057, "name": "CK-1457", "id": "CK-1457", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-09T15:00:00.000000-06:00", "pickupTime": "2020-02-09T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231060, "name": "CK-1458", "id": "CK-1458", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-16T15:00:00.000000-06:00", "pickupTime": "2020-02-16T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231063, "name": "CK-1459", "id": "CK-1459", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-23T15:00:00.000000-06:00", "pickupTime": "2020-02-23T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231066, "name": "CK-1460", "id": "CK-1460", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-01T15:00:00.000000-06:00", "pickupTime": "2020-03-01T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231069, "name": "CK-1461", "id": "CK-1461", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-08T15:00:00.000000-05:00", "pickupTime": "2020-03-08T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231072, "name": "CK-1462", "id": "CK-1462", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-15T15:00:00.000000-05:00", "pickupTime": "2020-03-15T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231075, "name": "CK-1463", "id": "CK-1463", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-22T15:00:00.000000-05:00", "pickupTime": "2020-03-22T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231078, "name": "CK-1464", "id": "CK-1464", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-29T15:00:00.000000-05:00", "pickupTime": "2020-03-29T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231081, "name": "CK-1465", "id": "CK-1465", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-05T15:00:00.000000-05:00", "pickupTime": "2020-04-05T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231084, "name": "CK-1466", "id": "CK-1466", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-12T15:00:00.000000-05:00", "pickupTime": "2020-04-12T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231087, "name": "CK-1467", "id": "CK-1467", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-19T15:00:00.000000-05:00", "pickupTime": "2020-04-19T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231090, "name": "CK-1468", "id": "CK-1468", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-26T15:00:00.000000-05:00", "pickupTime": "2020-04-26T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231109, "name": "CK-1469", "id": "CK-1469", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T15:00:00.000000-05:00", "pickupTime": "2019-09-02T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231112, "name": "CK-1470", "id": "CK-1470", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T15:00:00.000000-05:00", "pickupTime": "2019-09-09T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231115, "name": "CK-1471", "id": "CK-1471", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T15:00:00.000000-05:00", "pickupTime": "2019-09-16T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231118, "name": "CK-1472", "id": "CK-1472", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T15:00:00.000000-05:00", "pickupTime": "2019-09-23T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231121, "name": "CK-1473", "id": "CK-1473", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T15:00:00.000000-05:00", "pickupTime": "2019-09-30T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231124, "name": "CK-1474", "id": "CK-1474", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T15:00:00.000000-05:00", "pickupTime": "2019-10-07T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231127, "name": "CK-1475", "id": "CK-1475", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T15:00:00.000000-05:00", "pickupTime": "2019-10-14T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231130, "name": "CK-1476", "id": "CK-1476", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T15:00:00.000000-05:00", "pickupTime": "2019-10-21T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231133, "name": "CK-1477", "id": "CK-1477", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T15:00:00.000000-05:00", "pickupTime": "2019-10-28T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231136, "name": "CK-1478", "id": "CK-1478", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T15:00:00.000000-06:00", "pickupTime": "2019-11-04T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231139, "name": "CK-1479", "id": "CK-1479", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T15:00:00.000000-06:00", "pickupTime": "2019-11-11T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231142, "name": "CK-1480", "id": "CK-1480", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T15:00:00.000000-06:00", "pickupTime": "2019-11-18T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231145, "name": "CK-1481", "id": "CK-1481", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T15:00:00.000000-06:00", "pickupTime": "2019-11-25T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231148, "name": "CK-1482", "id": "CK-1482", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-02T15:00:00.000000-06:00", "pickupTime": "2019-12-02T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231151, "name": "CK-1483", "id": "CK-1483", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-09T15:00:00.000000-06:00", "pickupTime": "2019-12-09T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231154, "name": "CK-1484", "id": "CK-1484", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-16T15:00:00.000000-06:00", "pickupTime": "2019-12-16T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231157, "name": "CK-1485", "id": "CK-1485", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-23T15:00:00.000000-06:00", "pickupTime": "2019-12-23T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231160, "name": "CK-1486", "id": "CK-1486", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-30T15:00:00.000000-06:00", "pickupTime": "2019-12-30T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231163, "name": "CK-1487", "id": "CK-1487", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-06T15:00:00.000000-06:00", "pickupTime": "2020-01-06T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231166, "name": "CK-1488", "id": "CK-1488", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-13T15:00:00.000000-06:00", "pickupTime": "2020-01-13T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231169, "name": "CK-1489", "id": "CK-1489", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-20T15:00:00.000000-06:00", "pickupTime": "2020-01-20T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231172, "name": "CK-1490", "id": "CK-1490", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-27T15:00:00.000000-06:00", "pickupTime": "2020-01-27T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231175, "name": "CK-1491", "id": "CK-1491", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-03T15:00:00.000000-06:00", "pickupTime": "2020-02-03T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231178, "name": "CK-1492", "id": "CK-1492", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-10T15:00:00.000000-06:00", "pickupTime": "2020-02-10T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231181, "name": "CK-1493", "id": "CK-1493", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-17T15:00:00.000000-06:00", "pickupTime": "2020-02-17T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231184, "name": "CK-1494", "id": "CK-1494", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-24T15:00:00.000000-06:00", "pickupTime": "2020-02-24T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231187, "name": "CK-1495", "id": "CK-1495", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-02T15:00:00.000000-06:00", "pickupTime": "2020-03-02T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231190, "name": "CK-1496", "id": "CK-1496", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-09T15:00:00.000000-05:00", "pickupTime": "2020-03-09T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231193, "name": "CK-1497", "id": "CK-1497", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-16T15:00:00.000000-05:00", "pickupTime": "2020-03-16T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231196, "name": "CK-1498", "id": "CK-1498", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-23T15:00:00.000000-05:00", "pickupTime": "2020-03-23T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231199, "name": "CK-1499", "id": "CK-1499", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-30T15:00:00.000000-05:00", "pickupTime": "2020-03-30T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231202, "name": "CK-1500", "id": "CK-1500", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-06T15:00:00.000000-05:00", "pickupTime": "2020-04-06T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231205, "name": "CK-1501", "id": "CK-1501", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-13T15:00:00.000000-05:00", "pickupTime": "2020-04-13T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231208, "name": "CK-1502", "id": "CK-1502", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-20T15:00:00.000000-05:00", "pickupTime": "2020-04-20T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231211, "name": "CK-1503", "id": "CK-1503", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-27T15:00:00.000000-05:00", "pickupTime": "2020-04-27T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231220, "name": "CK-1504", "id": "CK-1504", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T15:00:00.000000-05:00", "pickupTime": "2019-09-03T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231223, "name": "CK-1505", "id": "CK-1505", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T15:00:00.000000-05:00", "pickupTime": "2019-09-10T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231226, "name": "CK-1506", "id": "CK-1506", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T15:00:00.000000-05:00", "pickupTime": "2019-09-17T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231229, "name": "CK-1507", "id": "CK-1507", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T15:00:00.000000-05:00", "pickupTime": "2019-09-24T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231232, "name": "CK-1508", "id": "CK-1508", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-01T15:00:00.000000-05:00", "pickupTime": "2019-10-01T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231235, "name": "CK-1509", "id": "CK-1509", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-08T15:00:00.000000-05:00", "pickupTime": "2019-10-08T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231238, "name": "CK-1510", "id": "CK-1510", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-15T15:00:00.000000-05:00", "pickupTime": "2019-10-15T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231241, "name": "CK-1511", "id": "CK-1511", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-22T15:00:00.000000-05:00", "pickupTime": "2019-10-22T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231244, "name": "CK-1512", "id": "CK-1512", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-29T15:00:00.000000-05:00", "pickupTime": "2019-10-29T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231247, "name": "CK-1513", "id": "CK-1513", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-05T15:00:00.000000-06:00", "pickupTime": "2019-11-05T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231250, "name": "CK-1514", "id": "CK-1514", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-12T15:00:00.000000-06:00", "pickupTime": "2019-11-12T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231253, "name": "CK-1515", "id": "CK-1515", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-19T15:00:00.000000-06:00", "pickupTime": "2019-11-19T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231256, "name": "CK-1516", "id": "CK-1516", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-26T15:00:00.000000-06:00", "pickupTime": "2019-11-26T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231259, "name": "CK-1517", "id": "CK-1517", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-03T15:00:00.000000-06:00", "pickupTime": "2019-12-03T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231262, "name": "CK-1518", "id": "CK-1518", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-10T15:00:00.000000-06:00", "pickupTime": "2019-12-10T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231265, "name": "CK-1519", "id": "CK-1519", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-17T15:00:00.000000-06:00", "pickupTime": "2019-12-17T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231268, "name": "CK-1520", "id": "CK-1520", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-24T15:00:00.000000-06:00", "pickupTime": "2019-12-24T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231271, "name": "CK-1521", "id": "CK-1521", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-31T15:00:00.000000-06:00", "pickupTime": "2019-12-31T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231274, "name": "CK-1522", "id": "CK-1522", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-07T15:00:00.000000-06:00", "pickupTime": "2020-01-07T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231277, "name": "CK-1523", "id": "CK-1523", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-14T15:00:00.000000-06:00", "pickupTime": "2020-01-14T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231280, "name": "CK-1524", "id": "CK-1524", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-21T15:00:00.000000-06:00", "pickupTime": "2020-01-21T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231283, "name": "CK-1525", "id": "CK-1525", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-28T15:00:00.000000-06:00", "pickupTime": "2020-01-28T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231286, "name": "CK-1526", "id": "CK-1526", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-04T15:00:00.000000-06:00", "pickupTime": "2020-02-04T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231289, "name": "CK-1527", "id": "CK-1527", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-11T15:00:00.000000-06:00", "pickupTime": "2020-02-11T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231292, "name": "CK-1528", "id": "CK-1528", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-18T15:00:00.000000-06:00", "pickupTime": "2020-02-18T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231295, "name": "CK-1529", "id": "CK-1529", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-25T15:00:00.000000-06:00", "pickupTime": "2020-02-25T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231298, "name": "CK-1530", "id": "CK-1530", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-03T15:00:00.000000-06:00", "pickupTime": "2020-03-03T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231301, "name": "CK-1531", "id": "CK-1531", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-10T15:00:00.000000-05:00", "pickupTime": "2020-03-10T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231304, "name": "CK-1532", "id": "CK-1532", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-17T15:00:00.000000-05:00", "pickupTime": "2020-03-17T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231307, "name": "CK-1533", "id": "CK-1533", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-24T15:00:00.000000-05:00", "pickupTime": "2020-03-24T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231310, "name": "CK-1534", "id": "CK-1534", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-31T15:00:00.000000-05:00", "pickupTime": "2020-03-31T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231313, "name": "CK-1535", "id": "CK-1535", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-07T15:00:00.000000-05:00", "pickupTime": "2020-04-07T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231316, "name": "CK-1536", "id": "CK-1536", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-14T15:00:00.000000-05:00", "pickupTime": "2020-04-14T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231319, "name": "CK-1537", "id": "CK-1537", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-21T15:00:00.000000-05:00", "pickupTime": "2020-04-21T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231322, "name": "CK-1538", "id": "CK-1538", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-28T15:00:00.000000-05:00", "pickupTime": "2020-04-28T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231335, "name": "CK-1539", "id": "CK-1539", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-04T15:00:00.000000-05:00", "pickupTime": "2019-09-04T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231338, "name": "CK-1540", "id": "CK-1540", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-11T15:00:00.000000-05:00", "pickupTime": "2019-09-11T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231341, "name": "CK-1541", "id": "CK-1541", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-18T15:00:00.000000-05:00", "pickupTime": "2019-09-18T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231344, "name": "CK-1542", "id": "CK-1542", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-25T15:00:00.000000-05:00", "pickupTime": "2019-09-25T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231348, "name": "CK-1543", "id": "CK-1543", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-02T15:00:00.000000-05:00", "pickupTime": "2019-10-02T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231351, "name": "CK-1544", "id": "CK-1544", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-09T15:00:00.000000-05:00", "pickupTime": "2019-10-09T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231354, "name": "CK-1545", "id": "CK-1545", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-16T15:00:00.000000-05:00", "pickupTime": "2019-10-16T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231357, "name": "CK-1546", "id": "CK-1546", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-23T15:00:00.000000-05:00", "pickupTime": "2019-10-23T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231360, "name": "CK-1547", "id": "CK-1547", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-30T15:00:00.000000-05:00", "pickupTime": "2019-10-30T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231363, "name": "CK-1548", "id": "CK-1548", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-06T15:00:00.000000-06:00", "pickupTime": "2019-11-06T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231366, "name": "CK-1549", "id": "CK-1549", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-13T15:00:00.000000-06:00", "pickupTime": "2019-11-13T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231369, "name": "CK-1550", "id": "CK-1550", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-20T15:00:00.000000-06:00", "pickupTime": "2019-11-20T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231372, "name": "CK-1551", "id": "CK-1551", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-27T15:00:00.000000-06:00", "pickupTime": "2019-11-27T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231376, "name": "CK-1552", "id": "CK-1552", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-04T15:00:00.000000-06:00", "pickupTime": "2019-12-04T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231379, "name": "CK-1553", "id": "CK-1553", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-11T15:00:00.000000-06:00", "pickupTime": "2019-12-11T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231382, "name": "CK-1554", "id": "CK-1554", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-18T15:00:00.000000-06:00", "pickupTime": "2019-12-18T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231385, "name": "CK-1555", "id": "CK-1555", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-25T15:00:00.000000-06:00", "pickupTime": "2019-12-25T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231388, "name": "CK-1556", "id": "CK-1556", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-01T15:00:00.000000-06:00", "pickupTime": "2020-01-01T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231391, "name": "CK-1557", "id": "CK-1557", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-08T15:00:00.000000-06:00", "pickupTime": "2020-01-08T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231394, "name": "CK-1558", "id": "CK-1558", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-15T15:00:00.000000-06:00", "pickupTime": "2020-01-15T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231397, "name": "CK-1559", "id": "CK-1559", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-22T15:00:00.000000-06:00", "pickupTime": "2020-01-22T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231400, "name": "CK-1560", "id": "CK-1560", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-29T15:00:00.000000-06:00", "pickupTime": "2020-01-29T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231403, "name": "CK-1561", "id": "CK-1561", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-05T15:00:00.000000-06:00", "pickupTime": "2020-02-05T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231406, "name": "CK-1562", "id": "CK-1562", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-12T15:00:00.000000-06:00", "pickupTime": "2020-02-12T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231409, "name": "CK-1563", "id": "CK-1563", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-19T15:00:00.000000-06:00", "pickupTime": "2020-02-19T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231412, "name": "CK-1564", "id": "CK-1564", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-26T15:00:00.000000-06:00", "pickupTime": "2020-02-26T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231415, "name": "CK-1565", "id": "CK-1565", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-04T15:00:00.000000-06:00", "pickupTime": "2020-03-04T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231420, "name": "CK-1566", "id": "CK-1566", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-11T15:00:00.000000-05:00", "pickupTime": "2020-03-11T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231423, "name": "CK-1567", "id": "CK-1567", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-18T15:00:00.000000-05:00", "pickupTime": "2020-03-18T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231426, "name": "CK-1568", "id": "CK-1568", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-25T15:00:00.000000-05:00", "pickupTime": "2020-03-25T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231429, "name": "CK-1569", "id": "CK-1569", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-01T15:00:00.000000-05:00", "pickupTime": "2020-04-01T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231432, "name": "CK-1570", "id": "CK-1570", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-08T15:00:00.000000-05:00", "pickupTime": "2020-04-08T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231435, "name": "CK-1571", "id": "CK-1571", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-15T15:00:00.000000-05:00", "pickupTime": "2020-04-15T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231438, "name": "CK-1572", "id": "CK-1572", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-22T15:00:00.000000-05:00", "pickupTime": "2020-04-22T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231441, "name": "CK-1573", "id": "CK-1573", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-29T15:00:00.000000-05:00", "pickupTime": "2020-04-29T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231452, "name": "CK-1574", "id": "CK-1574", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-05T15:00:00.000000-05:00", "pickupTime": "2019-09-05T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231455, "name": "CK-1575", "id": "CK-1575", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-12T15:00:00.000000-05:00", "pickupTime": "2019-09-12T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231458, "name": "CK-1576", "id": "CK-1576", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-19T15:00:00.000000-05:00", "pickupTime": "2019-09-19T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231461, "name": "CK-1577", "id": "CK-1577", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-26T15:00:00.000000-05:00", "pickupTime": "2019-09-26T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231464, "name": "CK-1578", "id": "CK-1578", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-03T15:00:00.000000-05:00", "pickupTime": "2019-10-03T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231467, "name": "CK-1579", "id": "CK-1579", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-10T15:00:00.000000-05:00", "pickupTime": "2019-10-10T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231470, "name": "CK-1580", "id": "CK-1580", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-17T15:00:00.000000-05:00", "pickupTime": "2019-10-17T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231473, "name": "CK-1581", "id": "CK-1581", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-24T15:00:00.000000-05:00", "pickupTime": "2019-10-24T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231476, "name": "CK-1582", "id": "CK-1582", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-31T15:00:00.000000-05:00", "pickupTime": "2019-10-31T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231479, "name": "CK-1583", "id": "CK-1583", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-07T15:00:00.000000-06:00", "pickupTime": "2019-11-07T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231482, "name": "CK-1584", "id": "CK-1584", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-14T15:00:00.000000-06:00", "pickupTime": "2019-11-14T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231485, "name": "CK-1585", "id": "CK-1585", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-21T15:00:00.000000-06:00", "pickupTime": "2019-11-21T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231488, "name": "CK-1586", "id": "CK-1586", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-28T15:00:00.000000-06:00", "pickupTime": "2019-11-28T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231491, "name": "CK-1587", "id": "CK-1587", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-05T15:00:00.000000-06:00", "pickupTime": "2019-12-05T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231494, "name": "CK-1588", "id": "CK-1588", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-12T15:00:00.000000-06:00", "pickupTime": "2019-12-12T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231497, "name": "CK-1589", "id": "CK-1589", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-19T15:00:00.000000-06:00", "pickupTime": "2019-12-19T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231501, "name": "CK-1590", "id": "CK-1590", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-26T15:00:00.000000-06:00", "pickupTime": "2019-12-26T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231504, "name": "CK-1591", "id": "CK-1591", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-02T15:00:00.000000-06:00", "pickupTime": "2020-01-02T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231507, "name": "CK-1592", "id": "CK-1592", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-09T15:00:00.000000-06:00", "pickupTime": "2020-01-09T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231510, "name": "CK-1593", "id": "CK-1593", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-16T15:00:00.000000-06:00", "pickupTime": "2020-01-16T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231513, "name": "CK-1594", "id": "CK-1594", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-23T15:00:00.000000-06:00", "pickupTime": "2020-01-23T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231516, "name": "CK-1595", "id": "CK-1595", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-30T15:00:00.000000-06:00", "pickupTime": "2020-01-30T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231519, "name": "CK-1596", "id": "CK-1596", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-06T15:00:00.000000-06:00", "pickupTime": "2020-02-06T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231522, "name": "CK-1597", "id": "CK-1597", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-13T15:00:00.000000-06:00", "pickupTime": "2020-02-13T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231525, "name": "CK-1598", "id": "CK-1598", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-20T15:00:00.000000-06:00", "pickupTime": "2020-02-20T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231528, "name": "CK-1599", "id": "CK-1599", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-27T15:00:00.000000-06:00", "pickupTime": "2020-02-27T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231531, "name": "CK-1600", "id": "CK-1600", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-05T15:00:00.000000-06:00", "pickupTime": "2020-03-05T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231534, "name": "CK-1601", "id": "CK-1601", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-12T15:00:00.000000-05:00", "pickupTime": "2020-03-12T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231537, "name": "CK-1602", "id": "CK-1602", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-19T15:00:00.000000-05:00", "pickupTime": "2020-03-19T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231540, "name": "CK-1603", "id": "CK-1603", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-26T15:00:00.000000-05:00", "pickupTime": "2020-03-26T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231543, "name": "CK-1604", "id": "CK-1604", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-02T15:00:00.000000-05:00", "pickupTime": "2020-04-02T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231546, "name": "CK-1605", "id": "CK-1605", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-09T15:00:00.000000-05:00", "pickupTime": "2020-04-09T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231549, "name": "CK-1606", "id": "CK-1606", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-16T15:00:00.000000-05:00", "pickupTime": "2020-04-16T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231552, "name": "CK-1607", "id": "CK-1607", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-23T15:00:00.000000-05:00", "pickupTime": "2020-04-23T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231555, "name": "CK-1608", "id": "CK-1608", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-30T15:00:00.000000-05:00", "pickupTime": "2020-04-30T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231571, "name": "CK-1609", "id": "CK-1609", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-30T15:00:00.000000-05:00", "pickupTime": "2019-08-30T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231574, "name": "CK-1610", "id": "CK-1610", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-06T15:00:00.000000-05:00", "pickupTime": "2019-09-06T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231577, "name": "CK-1611", "id": "CK-1611", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-13T15:00:00.000000-05:00", "pickupTime": "2019-09-13T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231580, "name": "CK-1612", "id": "CK-1612", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-20T15:00:00.000000-05:00", "pickupTime": "2019-09-20T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231583, "name": "CK-1613", "id": "CK-1613", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-27T15:00:00.000000-05:00", "pickupTime": "2019-09-27T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231586, "name": "CK-1614", "id": "CK-1614", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-04T15:00:00.000000-05:00", "pickupTime": "2019-10-04T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231589, "name": "CK-1615", "id": "CK-1615", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-11T15:00:00.000000-05:00", "pickupTime": "2019-10-11T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231592, "name": "CK-1616", "id": "CK-1616", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-18T15:00:00.000000-05:00", "pickupTime": "2019-10-18T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231595, "name": "CK-1617", "id": "CK-1617", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-25T15:00:00.000000-05:00", "pickupTime": "2019-10-25T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231598, "name": "CK-1618", "id": "CK-1618", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-01T15:00:00.000000-05:00", "pickupTime": "2019-11-01T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231601, "name": "CK-1619", "id": "CK-1619", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-08T15:00:00.000000-06:00", "pickupTime": "2019-11-08T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231604, "name": "CK-1620", "id": "CK-1620", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-15T15:00:00.000000-06:00", "pickupTime": "2019-11-15T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231607, "name": "CK-1621", "id": "CK-1621", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-22T15:00:00.000000-06:00", "pickupTime": "2019-11-22T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231610, "name": "CK-1622", "id": "CK-1622", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-29T15:00:00.000000-06:00", "pickupTime": "2019-11-29T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231613, "name": "CK-1623", "id": "CK-1623", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-06T15:00:00.000000-06:00", "pickupTime": "2019-12-06T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231616, "name": "CK-1624", "id": "CK-1624", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-13T15:00:00.000000-06:00", "pickupTime": "2019-12-13T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231619, "name": "CK-1625", "id": "CK-1625", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-20T15:00:00.000000-06:00", "pickupTime": "2019-12-20T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231622, "name": "CK-1626", "id": "CK-1626", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-27T15:00:00.000000-06:00", "pickupTime": "2019-12-27T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231625, "name": "CK-1627", "id": "CK-1627", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-03T15:00:00.000000-06:00", "pickupTime": "2020-01-03T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231628, "name": "CK-1628", "id": "CK-1628", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-10T15:00:00.000000-06:00", "pickupTime": "2020-01-10T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231631, "name": "CK-1629", "id": "CK-1629", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-17T15:00:00.000000-06:00", "pickupTime": "2020-01-17T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231634, "name": "CK-1630", "id": "CK-1630", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-24T15:00:00.000000-06:00", "pickupTime": "2020-01-24T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231637, "name": "CK-1631", "id": "CK-1631", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-31T15:00:00.000000-06:00", "pickupTime": "2020-01-31T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231640, "name": "CK-1632", "id": "CK-1632", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-07T15:00:00.000000-06:00", "pickupTime": "2020-02-07T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231643, "name": "CK-1633", "id": "CK-1633", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-14T15:00:00.000000-06:00", "pickupTime": "2020-02-14T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231647, "name": "CK-1634", "id": "CK-1634", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-21T15:00:00.000000-06:00", "pickupTime": "2020-02-21T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231650, "name": "CK-1635", "id": "CK-1635", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-28T15:00:00.000000-06:00", "pickupTime": "2020-02-28T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231653, "name": "CK-1636", "id": "CK-1636", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-06T15:00:00.000000-06:00", "pickupTime": "2020-03-06T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231656, "name": "CK-1637", "id": "CK-1637", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-13T15:00:00.000000-05:00", "pickupTime": "2020-03-13T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231659, "name": "CK-1638", "id": "CK-1638", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-20T15:00:00.000000-05:00", "pickupTime": "2020-03-20T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231662, "name": "CK-1639", "id": "CK-1639", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-27T15:00:00.000000-05:00", "pickupTime": "2020-03-27T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231665, "name": "CK-1640", "id": "CK-1640", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-03T15:00:00.000000-05:00", "pickupTime": "2020-04-03T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231668, "name": "CK-1641", "id": "CK-1641", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-10T15:00:00.000000-05:00", "pickupTime": "2020-04-10T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231671, "name": "CK-1642", "id": "CK-1642", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-17T15:00:00.000000-05:00", "pickupTime": "2020-04-17T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231674, "name": "CK-1643", "id": "CK-1643", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-24T15:00:00.000000-05:00", "pickupTime": "2020-04-24T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231687, "name": "CK-1644", "id": "CK-1644", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-31T15:00:00.000000-05:00", "pickupTime": "2019-08-31T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231690, "name": "CK-1645", "id": "CK-1645", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-07T15:00:00.000000-05:00", "pickupTime": "2019-09-07T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231693, "name": "CK-1646", "id": "CK-1646", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-14T15:00:00.000000-05:00", "pickupTime": "2019-09-14T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231696, "name": "CK-1647", "id": "CK-1647", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-21T15:00:00.000000-05:00", "pickupTime": "2019-09-21T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231699, "name": "CK-1648", "id": "CK-1648", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-28T15:00:00.000000-05:00", "pickupTime": "2019-09-28T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231702, "name": "CK-1649", "id": "CK-1649", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-05T15:00:00.000000-05:00", "pickupTime": "2019-10-05T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231705, "name": "CK-1650", "id": "CK-1650", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-12T15:00:00.000000-05:00", "pickupTime": "2019-10-12T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231708, "name": "CK-1651", "id": "CK-1651", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-19T15:00:00.000000-05:00", "pickupTime": "2019-10-19T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231711, "name": "CK-1652", "id": "CK-1652", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-26T15:00:00.000000-05:00", "pickupTime": "2019-10-26T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231714, "name": "CK-1653", "id": "CK-1653", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-02T15:00:00.000000-05:00", "pickupTime": "2019-11-02T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231718, "name": "CK-1654", "id": "CK-1654", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-09T15:00:00.000000-06:00", "pickupTime": "2019-11-09T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231721, "name": "CK-1655", "id": "CK-1655", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-16T15:00:00.000000-06:00", "pickupTime": "2019-11-16T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231724, "name": "CK-1656", "id": "CK-1656", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-23T15:00:00.000000-06:00", "pickupTime": "2019-11-23T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231727, "name": "CK-1657", "id": "CK-1657", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-30T15:00:00.000000-06:00", "pickupTime": "2019-11-30T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231730, "name": "CK-1658", "id": "CK-1658", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-07T15:00:00.000000-06:00", "pickupTime": "2019-12-07T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231733, "name": "CK-1659", "id": "CK-1659", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-14T15:00:00.000000-06:00", "pickupTime": "2019-12-14T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231736, "name": "CK-1660", "id": "CK-1660", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-21T15:00:00.000000-06:00", "pickupTime": "2019-12-21T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231739, "name": "CK-1661", "id": "CK-1661", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-12-28T15:00:00.000000-06:00", "pickupTime": "2019-12-28T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231743, "name": "CK-1662", "id": "CK-1662", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-04T15:00:00.000000-06:00", "pickupTime": "2020-01-04T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231746, "name": "CK-1663", "id": "CK-1663", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-11T15:00:00.000000-06:00", "pickupTime": "2020-01-11T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231749, "name": "CK-1664", "id": "CK-1664", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-18T15:00:00.000000-06:00", "pickupTime": "2020-01-18T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231752, "name": "CK-1665", "id": "CK-1665", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-01-25T15:00:00.000000-06:00", "pickupTime": "2020-01-25T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231755, "name": "CK-1666", "id": "CK-1666", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-01T15:00:00.000000-06:00", "pickupTime": "2020-02-01T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231758, "name": "CK-1667", "id": "CK-1667", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-08T15:00:00.000000-06:00", "pickupTime": "2020-02-08T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231761, "name": "CK-1668", "id": "CK-1668", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-15T15:00:00.000000-06:00", "pickupTime": "2020-02-15T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231764, "name": "CK-1669", "id": "CK-1669", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-22T15:00:00.000000-06:00", "pickupTime": "2020-02-22T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231767, "name": "CK-1670", "id": "CK-1670", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-02-29T15:00:00.000000-06:00", "pickupTime": "2020-02-29T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231770, "name": "CK-1671", "id": "CK-1671", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-07T15:00:00.000000-06:00", "pickupTime": "2020-03-07T13:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231773, "name": "CK-1672", "id": "CK-1672", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-14T15:00:00.000000-05:00", "pickupTime": "2020-03-14T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231776, "name": "CK-1673", "id": "CK-1673", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-21T15:00:00.000000-05:00", "pickupTime": "2020-03-21T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231779, "name": "CK-1674", "id": "CK-1674", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-28T15:00:00.000000-05:00", "pickupTime": "2020-03-28T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231782, "name": "CK-1675", "id": "CK-1675", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-04T15:00:00.000000-05:00", "pickupTime": "2020-04-04T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231787, "name": "CK-1676", "id": "CK-1676", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-11T15:00:00.000000-05:00", "pickupTime": "2020-04-11T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231790, "name": "CK-1677", "id": "CK-1677", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-18T15:00:00.000000-05:00", "pickupTime": "2020-04-18T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 231793, "name": "CK-1678", "id": "CK-1678", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-25T15:00:00.000000-05:00", "pickupTime": "2020-04-25T13:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234777, "name": "CK-1679", "id": "CK-1679", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T19:00:00.000000-05:00", "pickupTime": "2019-08-23T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234960, "name": "CK-1680", "id": "CK-1680", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-01T19:00:00.000000-05:00", "pickupTime": "2019-09-01T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234963, "name": "CK-1681", "id": "CK-1681", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-08T19:00:00.000000-05:00", "pickupTime": "2019-09-08T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234966, "name": "CK-1682", "id": "CK-1682", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-15T19:00:00.000000-05:00", "pickupTime": "2019-09-15T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234969, "name": "CK-1683", "id": "CK-1683", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-22T19:00:00.000000-05:00", "pickupTime": "2019-09-22T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234972, "name": "CK-1684", "id": "CK-1684", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-29T19:00:00.000000-05:00", "pickupTime": "2019-09-29T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234975, "name": "CK-1685", "id": "CK-1685", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-06T19:00:00.000000-05:00", "pickupTime": "2019-10-06T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234978, "name": "CK-1686", "id": "CK-1686", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-13T19:00:00.000000-05:00", "pickupTime": "2019-10-13T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234981, "name": "CK-1687", "id": "CK-1687", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-20T19:00:00.000000-05:00", "pickupTime": "2019-10-20T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234984, "name": "CK-1688", "id": "CK-1688", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-27T19:00:00.000000-05:00", "pickupTime": "2019-10-27T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234987, "name": "CK-1689", "id": "CK-1689", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-03T19:00:00.000000-06:00", "pickupTime": "2019-11-03T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234990, "name": "CK-1690", "id": "CK-1690", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-10T19:00:00.000000-06:00", "pickupTime": "2019-11-10T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234993, "name": "CK-1691", "id": "CK-1691", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-17T19:00:00.000000-06:00", "pickupTime": "2019-11-17T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 234996, "name": "CK-1692", "id": "CK-1692", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-24T19:00:00.000000-06:00", "pickupTime": "2019-11-24T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235009, "name": "CK-1693", "id": "CK-1693", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T19:00:00.000000-05:00", "pickupTime": "2019-09-02T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235012, "name": "CK-1694", "id": "CK-1694", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T19:00:00.000000-05:00", "pickupTime": "2019-09-09T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235015, "name": "CK-1695", "id": "CK-1695", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T19:00:00.000000-05:00", "pickupTime": "2019-09-16T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235018, "name": "CK-1696", "id": "CK-1696", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T19:00:00.000000-05:00", "pickupTime": "2019-09-23T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235021, "name": "CK-1697", "id": "CK-1697", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T19:00:00.000000-05:00", "pickupTime": "2019-09-30T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235024, "name": "CK-1698", "id": "CK-1698", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-07T19:00:00.000000-05:00", "pickupTime": "2019-10-07T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235027, "name": "CK-1699", "id": "CK-1699", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-14T19:00:00.000000-05:00", "pickupTime": "2019-10-14T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235030, "name": "CK-1700", "id": "CK-1700", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-21T19:00:00.000000-05:00", "pickupTime": "2019-10-21T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235033, "name": "CK-1701", "id": "CK-1701", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-28T19:00:00.000000-05:00", "pickupTime": "2019-10-28T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235036, "name": "CK-1702", "id": "CK-1702", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-04T19:00:00.000000-06:00", "pickupTime": "2019-11-04T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235039, "name": "CK-1703", "id": "CK-1703", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-11T19:00:00.000000-06:00", "pickupTime": "2019-11-11T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235042, "name": "CK-1704", "id": "CK-1704", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-18T19:00:00.000000-06:00", "pickupTime": "2019-11-18T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235045, "name": "CK-1705", "id": "CK-1705", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-25T19:00:00.000000-06:00", "pickupTime": "2019-11-25T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235058, "name": "CK-1706", "id": "CK-1706", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T19:00:00.000000-05:00", "pickupTime": "2019-09-03T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235061, "name": "CK-1707", "id": "CK-1707", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T19:00:00.000000-05:00", "pickupTime": "2019-09-10T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235064, "name": "CK-1708", "id": "CK-1708", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T19:00:00.000000-05:00", "pickupTime": "2019-09-17T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235067, "name": "CK-1709", "id": "CK-1709", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T19:00:00.000000-05:00", "pickupTime": "2019-09-24T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235070, "name": "CK-1710", "id": "CK-1710", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-01T19:00:00.000000-05:00", "pickupTime": "2019-10-01T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235073, "name": "CK-1711", "id": "CK-1711", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-08T19:00:00.000000-05:00", "pickupTime": "2019-10-08T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235076, "name": "CK-1712", "id": "CK-1712", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-15T19:00:00.000000-05:00", "pickupTime": "2019-10-15T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235079, "name": "CK-1713", "id": "CK-1713", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-22T19:00:00.000000-05:00", "pickupTime": "2019-10-22T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235082, "name": "CK-1714", "id": "CK-1714", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-29T19:00:00.000000-05:00", "pickupTime": "2019-10-29T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235085, "name": "CK-1715", "id": "CK-1715", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-05T19:00:00.000000-06:00", "pickupTime": "2019-11-05T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235088, "name": "CK-1716", "id": "CK-1716", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-12T19:00:00.000000-06:00", "pickupTime": "2019-11-12T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235091, "name": "CK-1717", "id": "CK-1717", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-19T19:00:00.000000-06:00", "pickupTime": "2019-11-19T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235094, "name": "CK-1718", "id": "CK-1718", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-26T19:00:00.000000-06:00", "pickupTime": "2019-11-26T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235105, "name": "CK-1719", "id": "CK-1719", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-04T19:00:00.000000-05:00", "pickupTime": "2019-09-04T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235108, "name": "CK-1720", "id": "CK-1720", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-11T19:00:00.000000-05:00", "pickupTime": "2019-09-11T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235111, "name": "CK-1721", "id": "CK-1721", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-18T19:00:00.000000-05:00", "pickupTime": "2019-09-18T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235114, "name": "CK-1722", "id": "CK-1722", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-25T19:00:00.000000-05:00", "pickupTime": "2019-09-25T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235117, "name": "CK-1723", "id": "CK-1723", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-02T19:00:00.000000-05:00", "pickupTime": "2019-10-02T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235120, "name": "CK-1724", "id": "CK-1724", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-09T19:00:00.000000-05:00", "pickupTime": "2019-10-09T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235123, "name": "CK-1725", "id": "CK-1725", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-16T19:00:00.000000-05:00", "pickupTime": "2019-10-16T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235126, "name": "CK-1726", "id": "CK-1726", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-23T19:00:00.000000-05:00", "pickupTime": "2019-10-23T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235129, "name": "CK-1727", "id": "CK-1727", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-10-30T19:00:00.000000-05:00", "pickupTime": "2019-10-30T17:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235132, "name": "CK-1728", "id": "CK-1728", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-06T19:00:00.000000-06:00", "pickupTime": "2019-11-06T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235135, "name": "CK-1729", "id": "CK-1729", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-13T19:00:00.000000-06:00", "pickupTime": "2019-11-13T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235138, "name": "CK-1730", "id": "CK-1730", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-20T19:00:00.000000-06:00", "pickupTime": "2019-11-20T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235141, "name": "CK-1731", "id": "CK-1731", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-11-27T19:00:00.000000-06:00", "pickupTime": "2019-11-27T17:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235802, "name": "CK-1732", "id": "CK-1732", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-23T15:00:00.000000-05:00", "pickupTime": "2019-08-23T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235856, "name": "CK-1733", "id": "CK-1733", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-02T15:00:00.000000-05:00", "pickupTime": "2019-09-02T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235859, "name": "CK-1734", "id": "CK-1734", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-09T15:00:00.000000-05:00", "pickupTime": "2019-09-09T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235862, "name": "CK-1735", "id": "CK-1735", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-16T15:00:00.000000-05:00", "pickupTime": "2019-09-16T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235865, "name": "CK-1736", "id": "CK-1736", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-23T15:00:00.000000-05:00", "pickupTime": "2019-09-23T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235868, "name": "CK-1737", "id": "CK-1737", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-30T15:00:00.000000-05:00", "pickupTime": "2019-09-30T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235881, "name": "CK-1738", "id": "CK-1738", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-03T15:00:00.000000-05:00", "pickupTime": "2019-09-03T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235884, "name": "CK-1739", "id": "CK-1739", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-10T15:00:00.000000-05:00", "pickupTime": "2019-09-10T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235887, "name": "CK-1740", "id": "CK-1740", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-17T15:00:00.000000-05:00", "pickupTime": "2019-09-17T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235890, "name": "CK-1741", "id": "CK-1741", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-24T15:00:00.000000-05:00", "pickupTime": "2019-09-24T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235899, "name": "CK-1742", "id": "CK-1742", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-04T15:00:00.000000-05:00", "pickupTime": "2019-09-04T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235902, "name": "CK-1743", "id": "CK-1743", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-11T15:00:00.000000-05:00", "pickupTime": "2019-09-11T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235905, "name": "CK-1744", "id": "CK-1744", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-18T15:00:00.000000-05:00", "pickupTime": "2019-09-18T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 235908, "name": "CK-1745", "id": "CK-1745", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-09-25T15:00:00.000000-05:00", "pickupTime": "2019-09-25T14:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4570, "name": "Crow T. Robot", "userid": "sol2", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 236092, "name": "CK-1746", "id": "CK-1746", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-27T09:30:00.000000-05:00", "pickupTime": "2019-08-24T10:33:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4557, "name": "Joel Hodgson", "userid": "sol3", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 236151, "name": "CK-1747", "id": "CK-1747", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2019-08-28T04:59:00.000000-05:00", "pickupTime": "2019-08-24T10:27:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4553, "name": "Clayton Deborah Susan Forrester", "userid": "forrester", "barcode": "Deep13-1" }, "note": null }, { "_class": "allocation", "oid": 237313, "name": "CK-1749", "id": "CK-1749", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-04-01T11:00:00.000000-05:00", "pickupTime": "2019-08-22T15:31:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4553, "name": "Clayton Deborah Susan Forrester", "userid": "forrester", "barcode": "Deep13-1" }, "note": null }, { "_class": "allocation", "oid": 274007, "name": "CK-1752", "id": "CK-1752", "action": null, "stateLabel": "Checkout", "state": "CHECKOUT", "returnTime": "2020-03-26T12:40:00.000000-05:00", "pickupTime": "2020-03-26T12:37:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 274087, "name": "CK-1753", "id": "CK-1753", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-26T15:00:00.000000-05:00", "pickupTime": "2020-03-26T12:45:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 274166, "name": "CK-1754", "id": "CK-1754", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-26T14:00:00.000000-05:00", "pickupTime": "2020-03-26T12:40:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2554, "name": "Charles Bingley", "userid": "Charley", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 275755, "name": "CK-1757", "id": "CK-1757", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-09-04T10:01:00.000000-05:00", "pickupTime": "2020-03-26T14:53:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 275850, "name": "CK-1758", "id": "CK-1758", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-09-04T10:00:00.000000-05:00", "pickupTime": "2020-03-26T14:54:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4567, "name": "Danny Ocean", "userid": "22994", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 275936, "name": "CK-1759", "id": "CK-1759", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-27T11:00:00.000000-05:00", "pickupTime": "2020-03-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 276021, "name": "CK-1760", "id": "CK-1760", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-27T20:32:00.000000-05:00", "pickupTime": "2020-03-27T19:52:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4544, "name": "Saul Bloom", "userid": "23032", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 328684, "name": "CK-1762", "id": "CK-1762", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-03-31T21:30:00.000000-05:00", "pickupTime": "2020-03-31T15:35:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 328770, "name": "CK-1764", "id": "CK-1764", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-14T21:30:00.000000-05:00", "pickupTime": "2020-04-14T15:35:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 328772, "name": "CK-1766", "id": "CK-1766", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-28T21:30:00.000000-05:00", "pickupTime": "2020-04-28T15:35:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 328774, "name": "CK-1768", "id": "CK-1768", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-12T21:30:00.000000-05:00", "pickupTime": "2020-05-12T15:35:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 328776, "name": "CK-1770", "id": "CK-1770", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-26T21:30:00.000000-05:00", "pickupTime": "2020-05-26T15:35:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 364444, "name": "CK-1773", "id": "CK-1773", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-23T11:00:00.000000-05:00", "pickupTime": "2020-06-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": "my parent were born into the good life" }, { "_class": "allocation", "oid": 364682, "name": "CK-1774", "id": "CK-1774", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-03T11:00:00.000000-05:00", "pickupTime": "2020-04-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364763, "name": "CK-1775", "id": "CK-1775", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-06T11:00:00.000000-05:00", "pickupTime": "2020-05-06T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364764, "name": "CK-1776", "id": "CK-1776", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-13T11:00:00.000000-05:00", "pickupTime": "2020-05-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364765, "name": "CK-1777", "id": "CK-1777", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-20T11:00:00.000000-05:00", "pickupTime": "2020-05-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364766, "name": "CK-1778", "id": "CK-1778", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-27T11:00:00.000000-05:00", "pickupTime": "2020-05-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364767, "name": "CK-1779", "id": "CK-1779", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-03T11:00:00.000000-05:00", "pickupTime": "2020-06-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364768, "name": "CK-1780", "id": "CK-1780", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-10T11:00:00.000000-05:00", "pickupTime": "2020-06-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364769, "name": "CK-1781", "id": "CK-1781", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-17T11:00:00.000000-05:00", "pickupTime": "2020-06-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364770, "name": "CK-1782", "id": "CK-1782", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-24T11:00:00.000000-05:00", "pickupTime": "2020-06-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364771, "name": "CK-1783", "id": "CK-1783", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-01T11:00:00.000000-05:00", "pickupTime": "2020-07-01T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364772, "name": "CK-1784", "id": "CK-1784", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-08T11:00:00.000000-05:00", "pickupTime": "2020-07-08T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364773, "name": "CK-1785", "id": "CK-1785", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-15T11:00:00.000000-05:00", "pickupTime": "2020-07-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364774, "name": "CK-1786", "id": "CK-1786", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-22T11:00:00.000000-05:00", "pickupTime": "2020-07-22T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 364775, "name": "CK-1787", "id": "CK-1787", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-29T11:00:00.000000-05:00", "pickupTime": "2020-07-29T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": "making any attempt unfeasible" }, { "_class": "allocation", "oid": 365050, "name": "CK-1788", "id": "CK-1788", "action": null, "stateLabel": "Checkout", "state": "CHECKOUT", "returnTime": "2020-04-03T11:00:00.000000-05:00", "pickupTime": "2020-04-02T13:37:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4557, "name": "Joel Hodgson", "userid": "sol3", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 366389, "name": "CK-1789", "id": "CK-1789", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-09-04T10:02:00.000000-05:00", "pickupTime": "2020-04-02T14:39:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2573, "name": "Jim Halpert", "userid": "JHalpert", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 366485, "name": "CK-1790", "id": "CK-1790", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-05T16:07:00.000000-05:00", "pickupTime": "2020-04-05T09:59:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2583, "name": "Pam Beesly", "userid": "Pammm", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 366587, "name": "CK-1791", "id": "CK-1791", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-03T21:36:00.000000-05:00", "pickupTime": "2020-04-03T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2571, "name": "Jane Bennet", "userid": "Jane", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 375646, "name": "CK-1792", "id": "CK-1792", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-09-04T10:02:00.000000-05:00", "pickupTime": "2020-04-03T07:10:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4557, "name": "Joel Hodgson", "userid": "sol3", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 376432, "name": "CK-1793", "id": "CK-1793", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-09-04T10:02:00.000000-05:00", "pickupTime": "2020-04-03T07:57:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2573, "name": "Jim Halpert", "userid": "JHalpert", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469020, "name": "CK-1796", "id": "CK-1796", "action": null, "stateLabel": "Checkout", "state": "CHECKOUT", "returnTime": "2020-08-30T11:00:00.000000-05:00", "pickupTime": "2020-04-10T08:38:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469122, "name": "CK-1797", "id": "CK-1797", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-05-29T13:24:00.000000-05:00", "pickupTime": "2020-04-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469234, "name": "CK-1798", "id": "CK-1798", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-10T11:00:00.000000-05:00", "pickupTime": "2020-05-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469235, "name": "CK-1799", "id": "CK-1799", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-17T11:00:00.000000-05:00", "pickupTime": "2020-05-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469236, "name": "CK-1800", "id": "CK-1800", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-24T11:00:00.000000-05:00", "pickupTime": "2020-05-24T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469237, "name": "CK-1801", "id": "CK-1801", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-05-31T11:00:00.000000-05:00", "pickupTime": "2020-05-31T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469238, "name": "CK-1802", "id": "CK-1802", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-07T11:00:00.000000-05:00", "pickupTime": "2020-06-07T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469239, "name": "CK-1803", "id": "CK-1803", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-14T11:00:00.000000-05:00", "pickupTime": "2020-06-14T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469240, "name": "CK-1804", "id": "CK-1804", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-21T11:00:00.000000-05:00", "pickupTime": "2020-06-21T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469241, "name": "CK-1805", "id": "CK-1805", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-28T11:00:00.000000-05:00", "pickupTime": "2020-06-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469242, "name": "CK-1806", "id": "CK-1806", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-05T11:00:00.000000-05:00", "pickupTime": "2020-07-05T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469243, "name": "CK-1807", "id": "CK-1807", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-12T11:00:00.000000-05:00", "pickupTime": "2020-07-12T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469244, "name": "CK-1808", "id": "CK-1808", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-19T11:00:00.000000-05:00", "pickupTime": "2020-07-19T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469246, "name": "CK-1809", "id": "CK-1809", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-07-26T11:00:00.000000-05:00", "pickupTime": "2020-07-26T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469247, "name": "CK-1810", "id": "CK-1810", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-08-02T11:00:00.000000-05:00", "pickupTime": "2020-08-02T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469248, "name": "CK-1811", "id": "CK-1811", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-08-09T11:00:00.000000-05:00", "pickupTime": "2020-08-09T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469249, "name": "CK-1812", "id": "CK-1812", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-08-16T11:00:00.000000-05:00", "pickupTime": "2020-08-16T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469250, "name": "CK-1813", "id": "CK-1813", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-08-23T11:00:00.000000-05:00", "pickupTime": "2020-08-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469251, "name": "CK-1814", "id": "CK-1814", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-08-30T11:00:00.000000-05:00", "pickupTime": "2020-08-30T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469252, "name": "CK-1815", "id": "CK-1815", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-06T11:00:00.000000-05:00", "pickupTime": "2020-09-06T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469253, "name": "CK-1816", "id": "CK-1816", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-13T11:00:00.000000-05:00", "pickupTime": "2020-09-13T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469254, "name": "CK-1817", "id": "CK-1817", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-20T11:00:00.000000-05:00", "pickupTime": "2020-09-20T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469255, "name": "CK-1818", "id": "CK-1818", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-27T11:00:00.000000-05:00", "pickupTime": "2020-09-27T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469256, "name": "CK-1819", "id": "CK-1819", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-04T11:00:00.000000-05:00", "pickupTime": "2020-10-04T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469257, "name": "CK-1820", "id": "CK-1820", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-11T11:00:00.000000-05:00", "pickupTime": "2020-10-11T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469258, "name": "CK-1821", "id": "CK-1821", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-18T11:00:00.000000-05:00", "pickupTime": "2020-10-18T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469259, "name": "CK-1822", "id": "CK-1822", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-25T11:00:00.000000-05:00", "pickupTime": "2020-10-25T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469260, "name": "CK-1823", "id": "CK-1823", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-01T11:00:00.000000-06:00", "pickupTime": "2020-11-01T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469261, "name": "CK-1824", "id": "CK-1824", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-08T11:00:00.000000-06:00", "pickupTime": "2020-11-08T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469262, "name": "CK-1825", "id": "CK-1825", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-15T11:00:00.000000-06:00", "pickupTime": "2020-11-15T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469263, "name": "CK-1826", "id": "CK-1826", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-22T11:00:00.000000-06:00", "pickupTime": "2020-11-22T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469264, "name": "CK-1827", "id": "CK-1827", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-29T11:00:00.000000-06:00", "pickupTime": "2020-11-29T09:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2559, "name": "Darryl Philbin", "userid": "Darbin", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469755, "name": "CK-1828", "id": "CK-1828", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-04-10T11:00:00.000000-05:00", "pickupTime": "2020-04-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469851, "name": "CK-1829", "id": "CK-1829", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-10T11:00:00.000000-05:00", "pickupTime": "2020-05-10T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469864, "name": "CK-1830", "id": "CK-1830", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-05-28T11:00:00.000000-05:00", "pickupTime": "2020-05-28T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469875, "name": "CK-1831", "id": "CK-1831", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-17T11:00:00.000000-05:00", "pickupTime": "2020-06-17T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469885, "name": "CK-1832", "id": "CK-1832", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-23T11:00:00.000000-05:00", "pickupTime": "2020-06-23T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 469895, "name": "CK-1833", "id": "CK-1833", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-15T11:00:00.000000-05:00", "pickupTime": "2020-09-15T09:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 473073, "name": "CK-1834", "id": "CK-1834", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-05-29T15:48:00.000000-05:00", "pickupTime": "2020-05-29T15:37:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 502575, "name": "CK-1835", "id": "CK-1835", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-09-04T10:01:00.000000-05:00", "pickupTime": "2020-05-31T18:15:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 502665, "name": "CK-1836", "id": "CK-1836", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-04T10:10:00.000000-05:00", "pickupTime": "2020-06-04T05:16:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 502884, "name": "CK-1837", "id": "CK-1837", "action": null, "stateLabel": "Returned Checkout", "state": "CHECKOUT-COMPLETED", "returnTime": "2020-09-04T10:02:00.000000-05:00", "pickupTime": "2020-05-31T18:22:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 502953, "name": "CK-1838", "id": "CK-1838", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-06-05T07:17:00.000000-05:00", "pickupTime": "2020-06-04T16:24:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2562, "name": "Elizabeth Bennet", "userid": "Eliza", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 508701, "name": "CK-1840", "id": "CK-1840", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-17T18:00:00.000000-06:00", "pickupTime": "2020-12-17T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 508832, "name": "CK-1841", "id": "CK-1841", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-21T14:00:00.000000-06:00", "pickupTime": "2020-12-21T10:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4574, "name": "Tom Servo", "userid": "sol1", "barcode": "sat_of_love1" }, "note": null }, { "_class": "allocation", "oid": 509292, "name": "CK-1842", "id": "CK-1842", "action": null, "stateLabel": "Checkout", "state": "CHECKOUT", "returnTime": "2020-09-04T10:35:00.000000-05:00", "pickupTime": "2020-09-04T10:27:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510800, "name": "CK-1845", "id": "CK-1845", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-21T12:00:00.000000-05:00", "pickupTime": "2020-09-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510917, "name": "CK-1846", "id": "CK-1846", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-04T12:00:00.000000-05:00", "pickupTime": "2020-10-04T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510918, "name": "CK-1847", "id": "CK-1847", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-11T12:00:00.000000-05:00", "pickupTime": "2020-10-11T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510919, "name": "CK-1848", "id": "CK-1848", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-18T12:00:00.000000-05:00", "pickupTime": "2020-10-18T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510920, "name": "CK-1849", "id": "CK-1849", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-25T12:00:00.000000-05:00", "pickupTime": "2020-10-25T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510921, "name": "CK-1850", "id": "CK-1850", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-01T12:00:00.000000-06:00", "pickupTime": "2020-11-01T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510922, "name": "CK-1851", "id": "CK-1851", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-08T12:00:00.000000-06:00", "pickupTime": "2020-11-08T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510923, "name": "CK-1852", "id": "CK-1852", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-15T12:00:00.000000-06:00", "pickupTime": "2020-11-15T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510924, "name": "CK-1853", "id": "CK-1853", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-22T12:00:00.000000-06:00", "pickupTime": "2020-11-22T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510925, "name": "CK-1854", "id": "CK-1854", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-29T12:00:00.000000-06:00", "pickupTime": "2020-11-29T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510926, "name": "CK-1855", "id": "CK-1855", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-06T12:00:00.000000-06:00", "pickupTime": "2020-12-06T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510927, "name": "CK-1856", "id": "CK-1856", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-13T12:00:00.000000-06:00", "pickupTime": "2020-12-13T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510928, "name": "CK-1857", "id": "CK-1857", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-20T12:00:00.000000-06:00", "pickupTime": "2020-12-20T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510929, "name": "CK-1858", "id": "CK-1858", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-27T12:00:00.000000-06:00", "pickupTime": "2020-12-27T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510930, "name": "CK-1859", "id": "CK-1859", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-03T12:00:00.000000-06:00", "pickupTime": "2021-01-03T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510931, "name": "CK-1860", "id": "CK-1860", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-10T12:00:00.000000-06:00", "pickupTime": "2021-01-10T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510932, "name": "CK-1861", "id": "CK-1861", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-17T12:00:00.000000-06:00", "pickupTime": "2021-01-17T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510933, "name": "CK-1862", "id": "CK-1862", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-24T12:00:00.000000-06:00", "pickupTime": "2021-01-24T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510934, "name": "CK-1863", "id": "CK-1863", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-31T12:00:00.000000-06:00", "pickupTime": "2021-01-31T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510935, "name": "CK-1864", "id": "CK-1864", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-07T12:00:00.000000-06:00", "pickupTime": "2021-02-07T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510936, "name": "CK-1865", "id": "CK-1865", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-14T12:00:00.000000-06:00", "pickupTime": "2021-02-14T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510937, "name": "CK-1866", "id": "CK-1866", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-21T12:00:00.000000-06:00", "pickupTime": "2021-02-21T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510938, "name": "CK-1867", "id": "CK-1867", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-28T12:00:00.000000-06:00", "pickupTime": "2021-02-28T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510939, "name": "CK-1868", "id": "CK-1868", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-07T12:00:00.000000-06:00", "pickupTime": "2021-03-07T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510940, "name": "CK-1869", "id": "CK-1869", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-14T12:00:00.000000-05:00", "pickupTime": "2021-03-14T08:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510941, "name": "CK-1870", "id": "CK-1870", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-21T12:00:00.000000-05:00", "pickupTime": "2021-03-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510942, "name": "CK-1871", "id": "CK-1871", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-28T12:00:00.000000-05:00", "pickupTime": "2021-03-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510959, "name": "CK-1872", "id": "CK-1872", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-29T12:00:00.000000-05:00", "pickupTime": "2020-09-29T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510961, "name": "CK-1873", "id": "CK-1873", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-06T12:00:00.000000-05:00", "pickupTime": "2020-10-06T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510962, "name": "CK-1874", "id": "CK-1874", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-13T12:00:00.000000-05:00", "pickupTime": "2020-10-13T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510963, "name": "CK-1875", "id": "CK-1875", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-20T12:00:00.000000-05:00", "pickupTime": "2020-10-20T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510964, "name": "CK-1876", "id": "CK-1876", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-27T12:00:00.000000-05:00", "pickupTime": "2020-10-27T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510965, "name": "CK-1877", "id": "CK-1877", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-03T12:00:00.000000-06:00", "pickupTime": "2020-11-03T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510967, "name": "CK-1878", "id": "CK-1878", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-10T12:00:00.000000-06:00", "pickupTime": "2020-11-10T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510968, "name": "CK-1879", "id": "CK-1879", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-17T12:00:00.000000-06:00", "pickupTime": "2020-11-17T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510969, "name": "CK-1880", "id": "CK-1880", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-24T12:00:00.000000-06:00", "pickupTime": "2020-11-24T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510970, "name": "CK-1881", "id": "CK-1881", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-01T12:00:00.000000-06:00", "pickupTime": "2020-12-01T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510971, "name": "CK-1882", "id": "CK-1882", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-08T12:00:00.000000-06:00", "pickupTime": "2020-12-08T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510972, "name": "CK-1883", "id": "CK-1883", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-15T12:00:00.000000-06:00", "pickupTime": "2020-12-15T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510973, "name": "CK-1884", "id": "CK-1884", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-22T12:00:00.000000-06:00", "pickupTime": "2020-12-22T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510974, "name": "CK-1885", "id": "CK-1885", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-29T12:00:00.000000-06:00", "pickupTime": "2020-12-29T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510975, "name": "CK-1886", "id": "CK-1886", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-05T12:00:00.000000-06:00", "pickupTime": "2021-01-05T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510976, "name": "CK-1887", "id": "CK-1887", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-12T12:00:00.000000-06:00", "pickupTime": "2021-01-12T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510977, "name": "CK-1888", "id": "CK-1888", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-19T12:00:00.000000-06:00", "pickupTime": "2021-01-19T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510978, "name": "CK-1889", "id": "CK-1889", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-26T12:00:00.000000-06:00", "pickupTime": "2021-01-26T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510979, "name": "CK-1890", "id": "CK-1890", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-02T12:00:00.000000-06:00", "pickupTime": "2021-02-02T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510980, "name": "CK-1891", "id": "CK-1891", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-09T12:00:00.000000-06:00", "pickupTime": "2021-02-09T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510981, "name": "CK-1892", "id": "CK-1892", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-16T12:00:00.000000-06:00", "pickupTime": "2021-02-16T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510982, "name": "CK-1893", "id": "CK-1893", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-23T12:00:00.000000-06:00", "pickupTime": "2021-02-23T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510983, "name": "CK-1894", "id": "CK-1894", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-02T12:00:00.000000-06:00", "pickupTime": "2021-03-02T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510984, "name": "CK-1895", "id": "CK-1895", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-09T12:00:00.000000-06:00", "pickupTime": "2021-03-09T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510985, "name": "CK-1896", "id": "CK-1896", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-16T12:00:00.000000-05:00", "pickupTime": "2021-03-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 510986, "name": "CK-1897", "id": "CK-1897", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-23T12:00:00.000000-05:00", "pickupTime": "2021-03-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511126, "name": "CK-1898", "id": "CK-1898", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-30T12:00:00.000000-05:00", "pickupTime": "2020-09-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511127, "name": "CK-1899", "id": "CK-1899", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-07T12:00:00.000000-05:00", "pickupTime": "2020-10-07T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511128, "name": "CK-1900", "id": "CK-1900", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-14T12:00:00.000000-05:00", "pickupTime": "2020-10-14T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511129, "name": "CK-1901", "id": "CK-1901", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-21T12:00:00.000000-05:00", "pickupTime": "2020-10-21T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511130, "name": "CK-1902", "id": "CK-1902", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-28T12:00:00.000000-05:00", "pickupTime": "2020-10-28T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511153, "name": "CK-1903", "id": "CK-1903", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-02T12:00:00.000000-05:00", "pickupTime": "2020-10-02T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511154, "name": "CK-1904", "id": "CK-1904", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-09T12:00:00.000000-05:00", "pickupTime": "2020-10-09T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511155, "name": "CK-1905", "id": "CK-1905", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-16T12:00:00.000000-05:00", "pickupTime": "2020-10-16T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511156, "name": "CK-1906", "id": "CK-1906", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-23T12:00:00.000000-05:00", "pickupTime": "2020-10-23T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511157, "name": "CK-1907", "id": "CK-1907", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-30T12:00:00.000000-05:00", "pickupTime": "2020-10-30T07:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511158, "name": "CK-1908", "id": "CK-1908", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-06T12:00:00.000000-06:00", "pickupTime": "2020-11-06T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511159, "name": "CK-1909", "id": "CK-1909", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-13T12:00:00.000000-06:00", "pickupTime": "2020-11-13T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511160, "name": "CK-1910", "id": "CK-1910", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-20T12:00:00.000000-06:00", "pickupTime": "2020-11-20T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511161, "name": "CK-1911", "id": "CK-1911", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-27T12:00:00.000000-06:00", "pickupTime": "2020-11-27T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511162, "name": "CK-1912", "id": "CK-1912", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-04T12:00:00.000000-06:00", "pickupTime": "2020-12-04T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511166, "name": "CK-1913", "id": "CK-1913", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-11T12:00:00.000000-06:00", "pickupTime": "2020-12-11T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511167, "name": "CK-1914", "id": "CK-1914", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-18T12:00:00.000000-06:00", "pickupTime": "2020-12-18T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 511168, "name": "CK-1915", "id": "CK-1915", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-25T12:00:00.000000-06:00", "pickupTime": "2020-12-25T07:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514286, "name": "CK-1916", "id": "CK-1916", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-16T17:00:00.000000-05:00", "pickupTime": "2020-09-16T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514759, "name": "CK-1917", "id": "CK-1917", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-28T17:00:00.000000-05:00", "pickupTime": "2020-09-28T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514760, "name": "CK-1918", "id": "CK-1918", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-05T17:00:00.000000-05:00", "pickupTime": "2020-10-05T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514761, "name": "CK-1919", "id": "CK-1919", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-12T17:00:00.000000-05:00", "pickupTime": "2020-10-12T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514762, "name": "CK-1920", "id": "CK-1920", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-19T17:00:00.000000-05:00", "pickupTime": "2020-10-19T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514763, "name": "CK-1921", "id": "CK-1921", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-26T17:00:00.000000-05:00", "pickupTime": "2020-10-26T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514764, "name": "CK-1922", "id": "CK-1922", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-02T17:00:00.000000-06:00", "pickupTime": "2020-11-02T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514765, "name": "CK-1923", "id": "CK-1923", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-09T17:00:00.000000-06:00", "pickupTime": "2020-11-09T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514768, "name": "CK-1924", "id": "CK-1924", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-16T17:00:00.000000-06:00", "pickupTime": "2020-11-16T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514769, "name": "CK-1925", "id": "CK-1925", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-23T17:00:00.000000-06:00", "pickupTime": "2020-11-23T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514770, "name": "CK-1926", "id": "CK-1926", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-30T17:00:00.000000-06:00", "pickupTime": "2020-11-30T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514771, "name": "CK-1927", "id": "CK-1927", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-07T17:00:00.000000-06:00", "pickupTime": "2020-12-07T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514774, "name": "CK-1928", "id": "CK-1928", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-14T17:00:00.000000-06:00", "pickupTime": "2020-12-14T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514775, "name": "CK-1929", "id": "CK-1929", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-21T17:00:00.000000-06:00", "pickupTime": "2020-12-21T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514776, "name": "CK-1930", "id": "CK-1930", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-28T17:00:00.000000-06:00", "pickupTime": "2020-12-28T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514777, "name": "CK-1931", "id": "CK-1931", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-04T17:00:00.000000-06:00", "pickupTime": "2021-01-04T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514778, "name": "CK-1932", "id": "CK-1932", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-11T17:00:00.000000-06:00", "pickupTime": "2021-01-11T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514779, "name": "CK-1933", "id": "CK-1933", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-18T17:00:00.000000-06:00", "pickupTime": "2021-01-18T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514780, "name": "CK-1934", "id": "CK-1934", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-25T17:00:00.000000-06:00", "pickupTime": "2021-01-25T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514781, "name": "CK-1935", "id": "CK-1935", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-01T17:00:00.000000-06:00", "pickupTime": "2021-02-01T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514782, "name": "CK-1936", "id": "CK-1936", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-08T17:00:00.000000-06:00", "pickupTime": "2021-02-08T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514783, "name": "CK-1937", "id": "CK-1937", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-15T17:00:00.000000-06:00", "pickupTime": "2021-02-15T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514784, "name": "CK-1938", "id": "CK-1938", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-22T17:00:00.000000-06:00", "pickupTime": "2021-02-22T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514785, "name": "CK-1939", "id": "CK-1939", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-01T17:00:00.000000-06:00", "pickupTime": "2021-03-01T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514786, "name": "CK-1940", "id": "CK-1940", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-08T17:00:00.000000-06:00", "pickupTime": "2021-03-08T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514787, "name": "CK-1941", "id": "CK-1941", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-15T17:00:00.000000-05:00", "pickupTime": "2021-03-15T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514788, "name": "CK-1942", "id": "CK-1942", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-22T17:00:00.000000-05:00", "pickupTime": "2021-03-22T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514789, "name": "CK-1943", "id": "CK-1943", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-29T17:00:00.000000-05:00", "pickupTime": "2021-03-29T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514799, "name": "CK-1944", "id": "CK-1944", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-29T17:00:00.000000-05:00", "pickupTime": "2020-09-29T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514800, "name": "CK-1945", "id": "CK-1945", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-06T17:00:00.000000-05:00", "pickupTime": "2020-10-06T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514801, "name": "CK-1946", "id": "CK-1946", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-13T17:00:00.000000-05:00", "pickupTime": "2020-10-13T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514803, "name": "CK-1947", "id": "CK-1947", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-20T17:00:00.000000-05:00", "pickupTime": "2020-10-20T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514804, "name": "CK-1948", "id": "CK-1948", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-27T17:00:00.000000-05:00", "pickupTime": "2020-10-27T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514805, "name": "CK-1949", "id": "CK-1949", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-03T17:00:00.000000-06:00", "pickupTime": "2020-11-03T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514806, "name": "CK-1950", "id": "CK-1950", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-10T17:00:00.000000-06:00", "pickupTime": "2020-11-10T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514807, "name": "CK-1951", "id": "CK-1951", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-17T17:00:00.000000-06:00", "pickupTime": "2020-11-17T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514808, "name": "CK-1952", "id": "CK-1952", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-24T17:00:00.000000-06:00", "pickupTime": "2020-11-24T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514809, "name": "CK-1953", "id": "CK-1953", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-01T17:00:00.000000-06:00", "pickupTime": "2020-12-01T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514810, "name": "CK-1954", "id": "CK-1954", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-08T17:00:00.000000-06:00", "pickupTime": "2020-12-08T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514811, "name": "CK-1955", "id": "CK-1955", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-15T17:00:00.000000-06:00", "pickupTime": "2020-12-15T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514812, "name": "CK-1956", "id": "CK-1956", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-22T17:00:00.000000-06:00", "pickupTime": "2020-12-22T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514813, "name": "CK-1957", "id": "CK-1957", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-29T17:00:00.000000-06:00", "pickupTime": "2020-12-29T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514814, "name": "CK-1958", "id": "CK-1958", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-05T17:00:00.000000-06:00", "pickupTime": "2021-01-05T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514815, "name": "CK-1959", "id": "CK-1959", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-12T17:00:00.000000-06:00", "pickupTime": "2021-01-12T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514816, "name": "CK-1960", "id": "CK-1960", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-19T17:00:00.000000-06:00", "pickupTime": "2021-01-19T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514817, "name": "CK-1961", "id": "CK-1961", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-26T17:00:00.000000-06:00", "pickupTime": "2021-01-26T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514827, "name": "CK-1962", "id": "CK-1962", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-23T17:00:00.000000-05:00", "pickupTime": "2020-09-23T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514828, "name": "CK-1963", "id": "CK-1963", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-30T17:00:00.000000-05:00", "pickupTime": "2020-09-30T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514829, "name": "CK-1964", "id": "CK-1964", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-07T17:00:00.000000-05:00", "pickupTime": "2020-10-07T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514830, "name": "CK-1965", "id": "CK-1965", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-14T17:00:00.000000-05:00", "pickupTime": "2020-10-14T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514831, "name": "CK-1966", "id": "CK-1966", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-21T17:00:00.000000-05:00", "pickupTime": "2020-10-21T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514833, "name": "CK-1967", "id": "CK-1967", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-28T17:00:00.000000-05:00", "pickupTime": "2020-10-28T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514834, "name": "CK-1968", "id": "CK-1968", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-04T17:00:00.000000-06:00", "pickupTime": "2020-11-04T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514835, "name": "CK-1969", "id": "CK-1969", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-11T17:00:00.000000-06:00", "pickupTime": "2020-11-11T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514836, "name": "CK-1970", "id": "CK-1970", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-18T17:00:00.000000-06:00", "pickupTime": "2020-11-18T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514837, "name": "CK-1971", "id": "CK-1971", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-25T17:00:00.000000-06:00", "pickupTime": "2020-11-25T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514838, "name": "CK-1972", "id": "CK-1972", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-02T17:00:00.000000-06:00", "pickupTime": "2020-12-02T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514839, "name": "CK-1973", "id": "CK-1973", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-09T17:00:00.000000-06:00", "pickupTime": "2020-12-09T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514841, "name": "CK-1974", "id": "CK-1974", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-16T17:00:00.000000-06:00", "pickupTime": "2020-12-16T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514842, "name": "CK-1975", "id": "CK-1975", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-23T17:00:00.000000-06:00", "pickupTime": "2020-12-23T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514843, "name": "CK-1976", "id": "CK-1976", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-30T17:00:00.000000-06:00", "pickupTime": "2020-12-30T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514844, "name": "CK-1977", "id": "CK-1977", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-06T17:00:00.000000-06:00", "pickupTime": "2021-01-06T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514845, "name": "CK-1978", "id": "CK-1978", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-13T17:00:00.000000-06:00", "pickupTime": "2021-01-13T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514846, "name": "CK-1979", "id": "CK-1979", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-20T17:00:00.000000-06:00", "pickupTime": "2021-01-20T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514847, "name": "CK-1980", "id": "CK-1980", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-27T17:00:00.000000-06:00", "pickupTime": "2021-01-27T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514860, "name": "CK-1981", "id": "CK-1981", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-24T17:00:00.000000-05:00", "pickupTime": "2020-09-24T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514861, "name": "CK-1982", "id": "CK-1982", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-01T17:00:00.000000-05:00", "pickupTime": "2020-10-01T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514862, "name": "CK-1983", "id": "CK-1983", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-08T17:00:00.000000-05:00", "pickupTime": "2020-10-08T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514863, "name": "CK-1984", "id": "CK-1984", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-15T17:00:00.000000-05:00", "pickupTime": "2020-10-15T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514864, "name": "CK-1985", "id": "CK-1985", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-22T17:00:00.000000-05:00", "pickupTime": "2020-10-22T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514865, "name": "CK-1986", "id": "CK-1986", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-29T17:00:00.000000-05:00", "pickupTime": "2020-10-29T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514866, "name": "CK-1987", "id": "CK-1987", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-05T17:00:00.000000-06:00", "pickupTime": "2020-11-05T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514867, "name": "CK-1988", "id": "CK-1988", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-12T17:00:00.000000-06:00", "pickupTime": "2020-11-12T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514868, "name": "CK-1989", "id": "CK-1989", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-19T17:00:00.000000-06:00", "pickupTime": "2020-11-19T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514869, "name": "CK-1990", "id": "CK-1990", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-26T17:00:00.000000-06:00", "pickupTime": "2020-11-26T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514870, "name": "CK-1991", "id": "CK-1991", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-03T17:00:00.000000-06:00", "pickupTime": "2020-12-03T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514871, "name": "CK-1992", "id": "CK-1992", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-10T17:00:00.000000-06:00", "pickupTime": "2020-12-10T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514872, "name": "CK-1993", "id": "CK-1993", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-17T17:00:00.000000-06:00", "pickupTime": "2020-12-17T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514873, "name": "CK-1994", "id": "CK-1994", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-24T17:00:00.000000-06:00", "pickupTime": "2020-12-24T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514874, "name": "CK-1995", "id": "CK-1995", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-31T17:00:00.000000-06:00", "pickupTime": "2020-12-31T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514944, "name": "CK-1996", "id": "CK-1996", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-25T17:00:00.000000-05:00", "pickupTime": "2020-09-25T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514945, "name": "CK-1997", "id": "CK-1997", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-02T17:00:00.000000-05:00", "pickupTime": "2020-10-02T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514946, "name": "CK-1998", "id": "CK-1998", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-09T17:00:00.000000-05:00", "pickupTime": "2020-10-09T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514947, "name": "CK-1999", "id": "CK-1999", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-16T17:00:00.000000-05:00", "pickupTime": "2020-10-16T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514948, "name": "CK-2000", "id": "CK-2000", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-23T17:00:00.000000-05:00", "pickupTime": "2020-10-23T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514949, "name": "CK-2001", "id": "CK-2001", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-10-30T17:00:00.000000-05:00", "pickupTime": "2020-10-30T13:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514950, "name": "CK-2002", "id": "CK-2002", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-06T17:00:00.000000-06:00", "pickupTime": "2020-11-06T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514951, "name": "CK-2003", "id": "CK-2003", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-13T17:00:00.000000-06:00", "pickupTime": "2020-11-13T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514952, "name": "CK-2004", "id": "CK-2004", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-20T17:00:00.000000-06:00", "pickupTime": "2020-11-20T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514953, "name": "CK-2005", "id": "CK-2005", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-11-27T17:00:00.000000-06:00", "pickupTime": "2020-11-27T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514954, "name": "CK-2006", "id": "CK-2006", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-04T17:00:00.000000-06:00", "pickupTime": "2020-12-04T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514955, "name": "CK-2007", "id": "CK-2007", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-11T17:00:00.000000-06:00", "pickupTime": "2020-12-11T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514956, "name": "CK-2008", "id": "CK-2008", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-18T17:00:00.000000-06:00", "pickupTime": "2020-12-18T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 514957, "name": "CK-2009", "id": "CK-2009", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-12-25T17:00:00.000000-06:00", "pickupTime": "2020-12-25T13:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 1880, "name": "Checkout Center 9", "organization": { "_class": "organization", "oid": 1839, "name": "Organization C" }, "description": "" }, "patron": { "_class": "person", "oid": 2564, "name": "Fitzwiliam Darcy", "userid": "Fitz", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 533732, "name": "CK-2014", "id": "CK-2014", "action": null, "stateLabel": "Checkout", "state": "CHECKOUT", "returnTime": "2020-09-17T11:00:00.000000-05:00", "pickupTime": "2020-09-16T09:37:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4545, "name": "Linus Caldwell", "userid": "22948", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 535701, "name": "CK-2016", "id": "CK-2016", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2020-09-30T12:00:00.000000-05:00", "pickupTime": "2020-09-30T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2571, "name": "Jane Bennet", "userid": "Jane", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 625881, "name": "CK-2017", "id": "CK-2017", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-23T09:30:00.000000-06:00", "pickupTime": "2021-02-22T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": null }, { "_class": "allocation", "oid": 625975, "name": "CK-2018", "id": "CK-2018", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-17T14:30:00.000000-06:00", "pickupTime": "2021-11-17T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": "Hey there ghouls" }, { "_class": "allocation", "oid": 626070, "name": "CK-2019", "id": "CK-2019", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-12-03T15:00:00.000000-06:00", "pickupTime": "2021-12-03T12:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4550, "name": "Leeloo Dallas", "userid": "leeloo", "barcode": "5thelement" }, "note": "flip that switch" }, { "_class": "allocation", "oid": 626221, "name": "CK-2020", "id": "CK-2020", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-30T11:00:00.000000-06:00", "pickupTime": "2021-01-30T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626310, "name": "CK-2021", "id": "CK-2021", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-06T11:00:00.000000-06:00", "pickupTime": "2021-02-06T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626311, "name": "CK-2022", "id": "CK-2022", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-13T11:00:00.000000-06:00", "pickupTime": "2021-02-13T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626312, "name": "CK-2023", "id": "CK-2023", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-20T11:00:00.000000-06:00", "pickupTime": "2021-02-20T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626313, "name": "CK-2024", "id": "CK-2024", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-27T11:00:00.000000-06:00", "pickupTime": "2021-02-27T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626314, "name": "CK-2025", "id": "CK-2025", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-06T11:00:00.000000-06:00", "pickupTime": "2021-03-06T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626315, "name": "CK-2026", "id": "CK-2026", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-13T11:00:00.000000-06:00", "pickupTime": "2021-03-13T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626316, "name": "CK-2027", "id": "CK-2027", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-20T11:00:00.000000-05:00", "pickupTime": "2021-03-20T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626317, "name": "CK-2028", "id": "CK-2028", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-27T11:00:00.000000-05:00", "pickupTime": "2021-03-27T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626318, "name": "CK-2029", "id": "CK-2029", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-04-03T11:00:00.000000-05:00", "pickupTime": "2021-04-03T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626319, "name": "CK-2030", "id": "CK-2030", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-04-10T11:00:00.000000-05:00", "pickupTime": "2021-04-10T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626320, "name": "CK-2031", "id": "CK-2031", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-04-17T11:00:00.000000-05:00", "pickupTime": "2021-04-17T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626321, "name": "CK-2032", "id": "CK-2032", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-04-24T11:00:00.000000-05:00", "pickupTime": "2021-04-24T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626322, "name": "CK-2033", "id": "CK-2033", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-05-01T11:00:00.000000-05:00", "pickupTime": "2021-05-01T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626323, "name": "CK-2034", "id": "CK-2034", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-05-08T11:00:00.000000-05:00", "pickupTime": "2021-05-08T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626324, "name": "CK-2035", "id": "CK-2035", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-05-15T11:00:00.000000-05:00", "pickupTime": "2021-05-15T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626325, "name": "CK-2036", "id": "CK-2036", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-05-22T11:00:00.000000-05:00", "pickupTime": "2021-05-22T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626326, "name": "CK-2037", "id": "CK-2037", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-05-29T11:00:00.000000-05:00", "pickupTime": "2021-05-29T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626327, "name": "CK-2038", "id": "CK-2038", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-06-05T11:00:00.000000-05:00", "pickupTime": "2021-06-05T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626328, "name": "CK-2039", "id": "CK-2039", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-06-12T11:00:00.000000-05:00", "pickupTime": "2021-06-12T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626329, "name": "CK-2040", "id": "CK-2040", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-06-19T11:00:00.000000-05:00", "pickupTime": "2021-06-19T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626330, "name": "CK-2041", "id": "CK-2041", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-06-26T11:00:00.000000-05:00", "pickupTime": "2021-06-26T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626331, "name": "CK-2042", "id": "CK-2042", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-07-03T11:00:00.000000-05:00", "pickupTime": "2021-07-03T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626332, "name": "CK-2043", "id": "CK-2043", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-07-10T11:00:00.000000-05:00", "pickupTime": "2021-07-10T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626333, "name": "CK-2044", "id": "CK-2044", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-07-17T11:00:00.000000-05:00", "pickupTime": "2021-07-17T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626334, "name": "CK-2045", "id": "CK-2045", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-07-24T11:00:00.000000-05:00", "pickupTime": "2021-07-24T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626335, "name": "CK-2046", "id": "CK-2046", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-07-31T11:00:00.000000-05:00", "pickupTime": "2021-07-31T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626336, "name": "CK-2047", "id": "CK-2047", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-08-07T11:00:00.000000-05:00", "pickupTime": "2021-08-07T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626338, "name": "CK-2048", "id": "CK-2048", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-08-14T11:00:00.000000-05:00", "pickupTime": "2021-08-14T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626339, "name": "CK-2049", "id": "CK-2049", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-08-21T11:00:00.000000-05:00", "pickupTime": "2021-08-21T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626340, "name": "CK-2050", "id": "CK-2050", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-08-28T11:00:00.000000-05:00", "pickupTime": "2021-08-28T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626341, "name": "CK-2051", "id": "CK-2051", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-04T11:00:00.000000-05:00", "pickupTime": "2021-09-04T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626342, "name": "CK-2052", "id": "CK-2052", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-11T11:00:00.000000-05:00", "pickupTime": "2021-09-11T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626343, "name": "CK-2053", "id": "CK-2053", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-18T11:00:00.000000-05:00", "pickupTime": "2021-09-18T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626344, "name": "CK-2054", "id": "CK-2054", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-25T11:00:00.000000-05:00", "pickupTime": "2021-09-25T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626345, "name": "CK-2055", "id": "CK-2055", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-02T11:00:00.000000-05:00", "pickupTime": "2021-10-02T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626346, "name": "CK-2056", "id": "CK-2056", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-09T11:00:00.000000-05:00", "pickupTime": "2021-10-09T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626347, "name": "CK-2057", "id": "CK-2057", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-16T11:00:00.000000-05:00", "pickupTime": "2021-10-16T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626348, "name": "CK-2058", "id": "CK-2058", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-23T11:00:00.000000-05:00", "pickupTime": "2021-10-23T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626349, "name": "CK-2059", "id": "CK-2059", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-30T11:00:00.000000-05:00", "pickupTime": "2021-10-30T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626350, "name": "CK-2060", "id": "CK-2060", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-06T11:00:00.000000-05:00", "pickupTime": "2021-11-06T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626351, "name": "CK-2061", "id": "CK-2061", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-13T11:00:00.000000-06:00", "pickupTime": "2021-11-13T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626352, "name": "CK-2062", "id": "CK-2062", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-20T11:00:00.000000-06:00", "pickupTime": "2021-11-20T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626353, "name": "CK-2063", "id": "CK-2063", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-27T11:00:00.000000-06:00", "pickupTime": "2021-11-27T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626354, "name": "CK-2064", "id": "CK-2064", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-12-04T11:00:00.000000-06:00", "pickupTime": "2021-12-04T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626355, "name": "CK-2065", "id": "CK-2065", "action": null, "stateLabel": "Reservation", "state": "RESERVATION", "returnTime": "2021-12-11T11:00:00.000000-06:00", "pickupTime": "2021-12-11T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626356, "name": "CK-2066", "id": "CK-2066", "action": null, "stateLabel": "Reservation", "state": "RESERVATION", "returnTime": "2021-12-18T11:00:00.000000-06:00", "pickupTime": "2021-12-18T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 626357, "name": "CK-2067", "id": "CK-2067", "action": null, "stateLabel": "Reservation", "state": "RESERVATION", "returnTime": "2021-12-25T11:00:00.000000-06:00", "pickupTime": "2021-12-25T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627059, "name": "CK-2068", "id": "CK-2068", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-01-30T11:00:00.000000-06:00", "pickupTime": "2021-01-30T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627132, "name": "CK-2069", "id": "CK-2069", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-07T11:00:00.000000-06:00", "pickupTime": "2021-11-07T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627133, "name": "CK-2070", "id": "CK-2070", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-14T11:00:00.000000-06:00", "pickupTime": "2021-11-14T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627134, "name": "CK-2071", "id": "CK-2071", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-21T11:00:00.000000-06:00", "pickupTime": "2021-11-21T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627135, "name": "CK-2072", "id": "CK-2072", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-28T11:00:00.000000-06:00", "pickupTime": "2021-11-28T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627136, "name": "CK-2073", "id": "CK-2073", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-12-05T11:00:00.000000-06:00", "pickupTime": "2021-12-05T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627137, "name": "CK-2074", "id": "CK-2074", "action": null, "stateLabel": "Reservation", "state": "RESERVATION", "returnTime": "2021-12-12T11:00:00.000000-06:00", "pickupTime": "2021-12-12T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627138, "name": "CK-2075", "id": "CK-2075", "action": null, "stateLabel": "Reservation", "state": "RESERVATION", "returnTime": "2021-12-19T11:00:00.000000-06:00", "pickupTime": "2021-12-19T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 627139, "name": "CK-2076", "id": "CK-2076", "action": null, "stateLabel": "Reservation", "state": "RESERVATION", "returnTime": "2021-12-26T11:00:00.000000-06:00", "pickupTime": "2021-12-26T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 684109, "name": "CK-2077", "id": "CK-2077", "action": null, "stateLabel": "Checkout", "state": "CHECKOUT", "returnTime": "2021-02-03T11:00:00.000000-06:00", "pickupTime": "2021-02-02T14:22:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4552, "name": "Sally Ellis", "userid": "sallyell", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 696131, "name": "CK-2078", "id": "CK-2078", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-05T11:00:00.000000-06:00", "pickupTime": "2021-02-05T09:30:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4572, "name": "Rusty Ryan", "userid": "22939", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 751597, "name": "CK-2080", "id": "CK-2080", "action": null, "stateLabel": "Checkout", "state": "CHECKOUT", "returnTime": "2021-02-09T11:00:00.000000-06:00", "pickupTime": "2021-02-08T11:04:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4573, "name": "Ham on Rye", "userid": "sammich", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765228, "name": "CK-2081", "id": "CK-2081", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-02-11T01:00:00.000000-06:00", "pickupTime": "2021-02-10T23:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765445, "name": "CK-2082", "id": "CK-2082", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-08-12T01:00:00.000000-05:00", "pickupTime": "2021-08-11T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765446, "name": "CK-2083", "id": "CK-2083", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-08-19T01:00:00.000000-05:00", "pickupTime": "2021-08-18T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765447, "name": "CK-2084", "id": "CK-2084", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-08-26T01:00:00.000000-05:00", "pickupTime": "2021-08-25T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765449, "name": "CK-2085", "id": "CK-2085", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-02T01:00:00.000000-05:00", "pickupTime": "2021-09-01T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765450, "name": "CK-2086", "id": "CK-2086", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-09T01:00:00.000000-05:00", "pickupTime": "2021-09-08T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765451, "name": "CK-2087", "id": "CK-2087", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-16T01:00:00.000000-05:00", "pickupTime": "2021-09-15T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765452, "name": "CK-2088", "id": "CK-2088", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-23T01:00:00.000000-05:00", "pickupTime": "2021-09-22T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765453, "name": "CK-2089", "id": "CK-2089", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-09-30T01:00:00.000000-05:00", "pickupTime": "2021-09-29T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765454, "name": "CK-2090", "id": "CK-2090", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-07T01:00:00.000000-05:00", "pickupTime": "2021-10-06T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765455, "name": "CK-2091", "id": "CK-2091", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-14T01:00:00.000000-05:00", "pickupTime": "2021-10-13T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765456, "name": "CK-2092", "id": "CK-2092", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-21T01:00:00.000000-05:00", "pickupTime": "2021-10-20T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765457, "name": "CK-2093", "id": "CK-2093", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-10-28T01:00:00.000000-05:00", "pickupTime": "2021-10-27T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765458, "name": "CK-2094", "id": "CK-2094", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-04T01:00:00.000000-05:00", "pickupTime": "2021-11-03T23:00:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765459, "name": "CK-2095", "id": "CK-2095", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-11T01:00:00.000000-06:00", "pickupTime": "2021-11-10T23:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765460, "name": "CK-2096", "id": "CK-2096", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-18T01:00:00.000000-06:00", "pickupTime": "2021-11-17T23:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 765461, "name": "CK-2097", "id": "CK-2097", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-25T01:00:00.000000-06:00", "pickupTime": "2021-11-24T23:00:00.000000-06:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 797756, "name": "CK-2099", "id": "CK-2099", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-21T11:00:00.000000-05:00", "pickupTime": "2021-03-21T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4554, "name": "TV's Coniff Frank", "userid": "tv's Frank", "barcode": "Deep13-2" }, "note": "bad eggs" }, { "_class": "allocation", "oid": 797937, "name": "CK-2100", "id": "CK-2100", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-11-06T11:00:00.000000-05:00", "pickupTime": "2021-11-06T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4554, "name": "TV's Coniff Frank", "userid": "tv's Frank", "barcode": "Deep13-2" }, "note": "bad eggs" }, { "_class": "allocation", "oid": 797950, "name": "CK-2101", "id": "CK-2101", "action": null, "stateLabel": "Reservation", "state": "RESERVATION", "returnTime": "2022-05-14T11:00:00.000000-05:00", "pickupTime": "2022-05-14T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 4554, "name": "TV's Coniff Frank", "userid": "tv's Frank", "barcode": "Deep13-2" }, "note": "bad eggs" }, { "_class": "allocation", "oid": 799053, "name": "CK-2102", "id": "CK-2102", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-26T11:00:00.000000-05:00", "pickupTime": "2021-03-26T09:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2558, "name": "Claire Dunphy", "userid": "Claire", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 799211, "name": "CK-2103", "id": "CK-2103", "action": null, "stateLabel": "Canceled Reservation", "state": "RESERVATION-CANCELLED", "returnTime": "2021-03-29T10:00:00.000000-05:00", "pickupTime": "2021-03-29T07:30:00.000000-05:00", "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": { "_class": "person", "oid": 2588, "name": "Phil Dunphy", "userid": "Phil", "barcode": null }, "note": null }, { "_class": "allocation", "oid": 845655, "name": "CK-2124", "id": "CK-2124", "action": null, "stateLabel": null, "state": null, "returnTime": null, "pickupTime": null, "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": null, "note": null }, { "_class": "allocation", "oid": 845758, "name": "CK-2125", "id": "CK-2125", "action": null, "stateLabel": null, "state": null, "returnTime": null, "pickupTime": null, "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": null, "note": null }, { "_class": "allocation", "oid": 845866, "name": "CK-2126", "id": "CK-2126", "action": null, "stateLabel": null, "state": null, "returnTime": null, "pickupTime": null, "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": null, "note": null }, { "_class": "allocation", "oid": 845974, "name": "CK-2127", "id": "CK-2127", "action": null, "stateLabel": null, "state": null, "returnTime": null, "pickupTime": null, "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": null, "note": null }, { "_class": "allocation", "oid": 846075, "name": "CK-2128", "id": "CK-2128", "action": null, "stateLabel": null, "state": null, "returnTime": null, "pickupTime": null, "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": null, "note": null }, { "_class": "allocation", "oid": 846165, "name": "CK-2129", "id": "CK-2129", "action": null, "stateLabel": null, "state": null, "returnTime": null, "pickupTime": null, "checkoutCenter": { "_class": "checkoutCenter", "oid": 471, "name": "Checkout Center Vanilla", "organization": { "_class": "organization", "oid": 377, "name": "Organization A" }, "description": "24 hour center . DAT 9a - 11a . No FBS . PP Access = F" }, "patron": null, "note": null } ] }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Any collection of the same entity type may be exported to CSV by posting the name of the output file, the properties requested in order, and the list of OIDs to include in order.
POST /rest/person/exportCSV HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" } }
HTTP 500
{ "apiVersion": "1.2", "uri": "/rest/person/exportCSV", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "error", "notifications": null, "alert": null, "payload": { "message": "Properties list required for wcof-entites", "class": "COMMON-LISP:SIMPLE-ERROR" }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Getting the resulting URI, assuming it is done in the context of the same authorized session, will return the generated csv data as an attachment. Note, here, that this is not currently a rest API operation. Hence the use of the "GET" operation.
GET wco?method=get-asset&name=foo.csv
HTTP 200
Content-Disposition:attachment; filename=foo.csv Content-Type:text/csv; charset=utf-8 "Person ID",person.oid admin,1
In addition to exportCSV, entites may have additional possible export formats defined. A list of all exports available may be retrieved by GETting the namespaces exports asset. For consistancy, all export methods take the same set of arguments as exportCSV however some reports may ignore some of the arguments.
POST /rest/allocation/exports HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": {} }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/allocation/exports", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": [ { "name": "exportCSV", "label": "Export CSV" }, { "name": "byItemUsageReport", "label": "Usage Report" }, { "name": "agreementFormBundle", "label": "Form Archive" } ], "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
POST /rest/person/exports HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": {} }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/person/exports", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": [ { "name": "exportCSV", "label": "Export CSV" }, { "name": "exportImportable", "label": "Export Importable" } ], "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
Apart from the standard methods all entities have as documented above, some namespaces have additional commands defined. The list of available commands can be retrieved by GETing the namespaces commands operation.
The full list of commands for each namespace is listed in the the API Reference that is available on each WebChecheckout instance.
POST /rest/group/commands HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": {} }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/group/commands", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": [ { "name": "addAuthsetsToGroups", "requiredArguments": [ { "name": "authsets", "type": "authset", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "groups", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "groups", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "UNDOCUMENTED FRAMEWORK COMMAND" }, { "name": "addCheckoutCentersToGroups", "requiredArguments": [ { "name": "checkoutCenters", "type": "checkoutCenter", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "groups", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "scope", "type": "tag", "documentation": null, "constraint": null, "displayHint": "selectBox", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "groups", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "UNDOCUMENTED FRAMEWORK COMMAND" }, { "name": "addGroupAuthset", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "authset", "type": "authset", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "group", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Add an authset to group's primary authset (the top-level one\nmeant to hold ad hoc types/authsets in a place that cannot be\naccidentally reused)." }, { "name": "addGroupCheckoutCenter", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "checkoutCenter", "type": "checkoutCenter", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "scope", "type": "tag", "documentation": null, "constraint": null, "displayHint": "selectBox", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "group", "auths": [ "MANAGE-PIR-ACCESS" ] } ], "documentation": "Add a checkout-center to group's primary authset (the top-level one\nmeant to hold ad hoc types/authsets in a place that cannot be\naccidentally reused)." }, { "name": "addGroupResourceType", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "rtype", "type": "resourceType", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "group", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Add a resource-type to group's primary authset (the top-level one\nmeant to hold ad hoc types/authsets in a place that cannot be\naccidentally reused)." }, { "name": "addGroupSection", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "section", "type": "section", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Add section to group." }, { "name": "addResourceTypesToGroups", "requiredArguments": [ { "name": "resourceTypes", "type": "resourceType", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "groups", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "groups", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "UNDOCUMENTED FRAMEWORK COMMAND" }, { "name": "copyGroup", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Deep-copy group: (1) Shallow-copy group. (2) Set new group's\nsections to copies of group's sections. (3) Insert sections' members\ninto respective copies. User needs to hand-edit group's and sections'\nnames to be more meaningful than 'Copy of Copy of Copy of Foo'." }, { "name": "copySectionToGroup", "requiredArguments": [ { "name": "section", "type": "section", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Shallow copy section, then copy its members to the copy." }, { "name": "copySectionsToGroup", "requiredArguments": [ { "name": "sections", "type": "section", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Shallow copy section, then copy its members to the copy." }, { "name": "copySectionsToGroups", "requiredArguments": [ { "name": "sections", "type": "section", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "groups", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Shallow copy section every section to every group, copying the members to the copy." }, { "name": "createPrimaryAuthset", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "group", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Create and attach a primary authset to group if one doesn't exist. Raise an exception if one already exists, to force the user to do explicit checking." }, { "name": "deleteAuthsetsFromGroups", "requiredArguments": [ { "name": "authsets", "type": "authset", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "groups", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "groups", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "UNDOCUMENTED FRAMEWORK COMMAND" }, { "name": "deleteCheckoutCentersFromGroups", "requiredArguments": [ { "name": "checkoutCenters", "type": "checkoutCenter", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "groups", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "groups", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "UNDOCUMENTED FRAMEWORK COMMAND" }, { "name": "deleteGroup", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Delete group, possibly with a bunch of keyword arguments usable\nby group's wcof-create method. The caller can further populate\nits slots and add section, an authset, or whatever." }, { "name": "deleteGroupAuthset", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "group", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Disconnect authset from group." }, { "name": "deleteResourceTypesFromGroups", "requiredArguments": [ { "name": "resourceTypes", "type": "resourceType", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true }, { "name": "groups", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "groups", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "UNDOCUMENTED FRAMEWORK COMMAND" }, { "name": "deleteSections", "requiredArguments": [ { "name": "sections", "type": "section", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": true } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Delete sections. No need to provide the group as it's contained in each section." }, { "name": "groupPersonSetExpiration", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "person", "type": "person", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "date", "type": "timestamp", "documentation": null, "constraint": null, "displayHint": "timestamp", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": "group", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Set end-date for person in every section of group." }, { "name": "new", "requiredArguments": [ { "name": "organization", "type": "organization", "documentation": null, "constraint": { "name": "organizations", "type": "dynamicOrderedSet" }, "displayHint": "entity", "multiple": null } ], "optionalArguments": [ { "name": "name", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "status", "type": "tag", "documentation": null, "constraint": null, "displayHint": "selectBox", "multiple": null }, { "name": "contact", "type": "person", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "role", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "contactNote", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "groupIdentifier", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "origin", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "description", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "startDate", "type": "timestamp", "documentation": null, "constraint": null, "displayHint": "timestamp", "multiple": null }, { "name": "endDate", "type": "timestamp", "documentation": null, "constraint": null, "displayHint": "timestamp", "multiple": null }, { "name": "note", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "telephone", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "email", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null }, { "name": "url", "type": "string", "documentation": null, "constraint": null, "displayHint": "string", "multiple": null } ], "auth": [ { "type": "sysauth", "entity": "organization", "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Create a group" }, { "name": "shallowCopyGroup", "requiredArguments": [ { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Create a new group, identical to group (at the top level), except\nfor the following: name <- 'Copy of', group-identifier =\n'Copy of '." }, { "name": "shallowCopySectionToGroup", "requiredArguments": [ { "name": "section", "type": "section", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null }, { "name": "group", "type": "group", "documentation": null, "constraint": null, "displayHint": "entity", "multiple": null } ], "optionalArguments": null, "auth": [ { "type": "sysauth", "entity": [ "applicationObject" ], "auths": [ "MANAGE-AUTHS" ] } ], "documentation": "Create a new section, identical to section (at the top level), except\nfor the following: name <- 'Copy of ', section-identifier =\n'Copy of '." } ], "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
At its least sophisticated, a property template is simply an array of property names.
POST /rest/checkoutCenter/get HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "properties": [ "pickupDefault", "returnDefault", "organization" ], "oid": 1 } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/checkoutCenter/get", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "_class": "checkoutCenter", "oid": 1, "name": "WebCheckout", "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" } }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
However, some of these properties may themselves be entities with properties, as with organization above. Property templates allow for a recursive request for the properties of properties. If the base property is non-null, the "subProperties" template will be applied to the base properties value.
POST /rest/checkoutCenter/get HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "properties": [ "pickupDefault", "returnDefault", { "property": "organization", "subProperties": [ "timezone", "locale" ] } ], "oid": 1 } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/checkoutCenter/get", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "_class": "checkoutCenter", "oid": 1, "name": "WebCheckout", "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout", "locale": "en_US", "timezone": "America/Chicago" } }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }
The "subProperties" value is itself is a property template. This allows for unlimited nesting of templates.
POST /rest/checkoutCenter/get HTTP/1.1
{ "headers": { "Authorization": "Bearer eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=" }, "postBody": { "properties": [ "pickupDefault", "returnDefault", { "property": "organization", "subProperties": [ "timezone", "locale", { "property": "administrator", "subProperties": [ "barcode" ] } ] } ], "oid": 1 } }
HTTP 200
{ "apiVersion": "1.2", "uri": "/rest/checkoutCenter/get", "session": { "id": "S-22681", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2", "agent": { "_class": "person", "oid": 800788, "name": "Admin User", "avatar": null, "lastName": "User", "otherName": "", "firstName": "Admin", "userid": "adminuser" }, "checkoutCenter": null, "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout" }, "currentEditingAllocation": null, "resetTimeout": false, "resetApproved": false }, "status": "ok", "notifications": null, "alert": null, "payload": { "_class": "checkoutCenter", "oid": 1, "name": "WebCheckout", "organization": { "_class": "organization", "oid": 1, "name": "WebCheckout", "administrator": null, "locale": "en_US", "timezone": "America/Chicago" } }, "sessionToken": "eyJ0eXBlIjogInNlc3Npb24iLCAidmFsdWUiOiAiNTY4MDc4NWYtYWNiOS00YWE3LThjMzItMjgwZWE4NWI0NGUyIn0=", "sessionid": "5680785f-acb9-4aa7-8c32-280ea85b44e2" }