Koha Library Branch
EducationHigher EducationUniversityResearchIndiaOpen AccessLibraryMetadata
Properties
| Name | Type | Description |
|---|---|---|
| address1 | stringnull | the first address line of the library |
| address2 | stringnull | the second address line of the library |
| address3 | stringnull | the third address line of the library |
| cash_registers | arraynull | The library's defined cash registers (x-koha-embed) |
| city | stringnull | the city or province of the library |
| country | stringnull | the county of the library |
| desks | arraynull | The library's defined desks (x-koha-embed) |
| stringnull | the primary email address of the library | |
| fax | stringnull | the fax number of the library |
| geolocation | stringnull | geolocation of your library |
| illemail | stringnull | the ILL staff email address of the library |
| ip | stringnull | the IP address for your library or branch |
| library_id | string | internally assigned library identifier |
| marc_org_code | stringnull | MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode |
| name | string | Printable name of library |
| needs_override | boolean | If the library needs an override to act as pickup location for a hold |
| notes | stringnull | notes related to your library or branch |
| phone | stringnull | the primary phone of the library |
| pickup_location | boolean | If the library can act as a pickup location |
| postal_code | stringnull | the postal code of the library |
| public | boolean | If the library is visible to the public |
| reply_to_email | stringnull | the email to be used as a Reply-To |
| return_path_email | stringnull | the email to be used as Return-Path |
| smtp_server | objectnull | The library effective SMTP server |
| state | stringnull | the reqional state of the library |
| url | stringnull | the URL for your library or branch's website |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/iit-kanpur/main/json-schema/iit-kanpur-library-schema.json",
"title": "Koha Library Branch",
"type": "object",
"properties": {
"address1": {
"description": "the first address line of the library",
"type": [
"string",
"null"
]
},
"address2": {
"description": "the second address line of the library",
"type": [
"string",
"null"
]
},
"address3": {
"description": "the third address line of the library",
"type": [
"string",
"null"
]
},
"cash_registers": {
"description": "The library's defined cash registers (x-koha-embed)",
"type": [
"array",
"null"
]
},
"city": {
"description": "the city or province of the library",
"type": [
"string",
"null"
]
},
"country": {
"description": "the county of the library",
"type": [
"string",
"null"
]
},
"desks": {
"description": "The library's defined desks (x-koha-embed)",
"type": [
"array",
"null"
]
},
"email": {
"description": "the primary email address of the library",
"type": [
"string",
"null"
]
},
"fax": {
"description": "the fax number of the library",
"type": [
"string",
"null"
]
},
"geolocation": {
"description": "geolocation of your library",
"type": [
"string",
"null"
]
},
"illemail": {
"description": "the ILL staff email address of the library",
"type": [
"string",
"null"
]
},
"ip": {
"description": "the IP address for your library or branch",
"type": [
"string",
"null"
]
},
"library_id": {
"description": "internally assigned library identifier",
"maxLength": 10,
"minLength": 1,
"type": "string"
},
"marc_org_code": {
"description": "MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode",
"type": [
"string",
"null"
]
},
"name": {
"description": "Printable name of library",
"type": "string"
},
"needs_override": {
"description": "If the library needs an override to act as pickup location for a hold",
"type": "boolean"
},
"notes": {
"description": "notes related to your library or branch",
"type": [
"string",
"null"
]
},
"phone": {
"description": "the primary phone of the library",
"type": [
"string",
"null"
]
},
"pickup_location": {
"description": "If the library can act as a pickup location",
"type": "boolean"
},
"postal_code": {
"description": "the postal code of the library",
"type": [
"string",
"null"
]
},
"public": {
"description": "If the library is visible to the public",
"type": "boolean"
},
"reply_to_email": {
"description": "the email to be used as a Reply-To",
"type": [
"string",
"null"
]
},
"return_path_email": {
"description": "the email to be used as Return-Path",
"type": [
"string",
"null"
]
},
"smtp_server": {
"description": "The library effective SMTP server",
"type": [
"object",
"null"
]
},
"state": {
"description": "the reqional state of the library",
"type": [
"string",
"null"
]
},
"url": {
"description": "the URL for your library or branch's website",
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
}