Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

94 lines
2.0 KiB

{
"type": "object",
"properties": {
"claim_id": {
"type": [
"integer"
],
"description": "internally assigned return claim identifier"
},
"item_id": {
"type": [
"integer"
],
"description": "internal identifier of the claimed item"
},
"issue_id": {
"type": [
"integer",
"null"
],
"description": "internal identifier of the claimed checkout if still checked out"
},
"old_issue_id": {
"type": [
"integer",
"null"
],
"description": "internal identifier of the claimed checkout if not longer checked out"
},
"patron_id": {
"$ref": "../x-primitives.json#/patron_id"
},
"notes": {
"type": [
"string",
"null"
],
"description": "notes about this claim"
},
"created_on": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "date of claim creation"
},
"created_by": {
"type": [
"integer",
"null"
],
"description": "patron id of librarian who made the claim"
},
"updated_on": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "date the claim was last updated"
},
"updated_by": {
"type": [
"integer",
"null"
],
"description": "patron id of librarian who last updated the claim"
},
"resolution": {
"type": [
"string",
"null"
],
"description": "code of resolution type for this claim"
},
"resolved_on": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "date the claim was resolved"
},
"resolved_by": {
"type": [
"integer",
"null"
],
"description": "patron id of librarian who resolved this claim"
}
},
"additionalProperties": false
}