Holdings Object
The Holdings object returns a list of holdings records. Click the links below to view the Holdings Object fields and an example.
id
integer (optional)
(Always returned in the response.)
The record ID.
Example:
"id": 1000003
bibIds
array (optional)
The bibliographic record IDs where this holding is linked.
Example:
"bibIds": 1001528
bibIdLinks
array (optional)
The links to the bib records associated with this holding.
Example:
"bibIdLinks": "https://sandbox.iii.com/iii/sierra-api/v6/bibs/1001528"
itemIds
array
The item records IDs linked to this holding.
Example:
"itemIds": []
itemIdLinks
array (optional)
The links to the item records associated with this holding.
Example:
"itemIdLinks": []
inheritLocation
boolean (optional)
Indicates whether the location should be inhereted.
Example:
"inheritLocation": false
allocationRule
char (optional)
The allocation rule.
Example:
"allocationRule": ???
accountingUnit
integer (optional)
The accounting rule.
Example:
"accountingUnit": 1
labelCode
char (optional)
The label code.
Example:
"labelCode": a
serialCode1
char (optional)
Serial code 1.
Example:
"serialCode1": "t"
serialCode2
char (optional)
Seriial code 2.
Example:
"serialCode2": "-"
claimOnDate
string (optional)
the claim date and time, in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ssZZ).
Example:
"claimOnDate": ???
receivingLocationCode
string (optional)
The receiving location code.
Example:
"receivingLocationCode": "a"
vendorCode
string (optional)
The holding vendor code.
Example:
"vendorCode": "a0026"
serialCode3
char (optional)
Serial code 3.
Example:
"serialCode3": "-"
serialCode4
char (optional)
Serial code 4.
Example:
"serialCode4": "-"
updateCount
char (optional)
The update count.
Example:
"updateCount": "i"
pieceCount
integer (optional)
The piece count.
Example:
"pieceCount": 0
eCheckInCode
char (optional)
The eCheckin code.
Example:
"eCheckInCode": ""
mediaTypeCode
char (optional)
The media type code.
Example:
"mediaTypeCode": ""
updatedDate
string (optional)
The date and time of the last record update, in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ssZZ).
Example:
"updatedDate": "2009-10-06T20:29:14Z"
createdDate
string (optional)
The date and time the record was created, in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ssZZ).
Example:
"createdDate": "1986-01-31T12:00:00Z"
deletedDate
string (optional)
The date the record was deleted, in ISO 8601 format (yyyy-MM-dd).
Example:
"deletedDate": "2009-11-07T21:45:10Z"
deleted
boolean
indicates whether the record has been deleted.
Example:
"deleted": false
suppressed
boolean (optional)
indicates whether the record is suppressed from public display.
Example:
"suppressed": false
fixedFields
object
(Returns only if requested.)
The fixedFields property contains a map of FixedField objects, which contain fixed-length data fields from the bib record.
Example:
VarFields
Array
(Returns only if requested.)
The varFields property contains a list of VarField objects, which contain variable-length data fields from the bib record.
Example:
See varField Array
The preceding list order reflects the sequence in which the data returns.
Example response for:
https://sandbox.iii.com:443/iii/sierra-api/v6/holdings/?limit=10&deleted=false&suppressed=false
{
"total": 10,
"entries": [
{
"id": 1000003,
"bibIds": [
1001528
],
"bibIdLinks": [
"https://sandbox.iii.com/iii/sierra-api/v6/bibs/1001528"
],
"itemIds": [],
"itemIdLinks": [],
"inheritLocation": false,
"accountingUnit": 1,
"labelCode": "a",
"serialCode1": "t",
"serialCode2": "-",
"receivingLocationCode": "a",
"vendorCode": "a0026",
"serialCode3": "-",
"serialCode4": "-",
"updateCount": "i",
"pieceCount": 0,
"eCheckInCode": " ",
"mediaTypeCode": " ",
"updatedDate": "2009-10-06T20:29:14Z",
"createdDate": "1986-01-31T12:00:00Z",
"deleted": false,
"suppressed": false
}
]
}