Skip to content

Latest commit

 

History

History
1246 lines (988 loc) · 48.8 KB

paia.md

File metadata and controls

1246 lines (988 loc) · 48.8 KB

Introduction

{ABSTRACT}

Synopsis

PAIA defines six methods in PAIA core and three methods in PAIA auth. Each method is defined with an HTTP verb and an entity that the method acts on:

PAIA core PAIA auth


GET patron: general patron information POST login: get access token GET items: current loans, reservations, … POST logout: invalidate access token POST request: new reservation, delivery, … POST change: modify credentials POST renew: existing loans, reservations, …
POST cancel: requests, reservations, …
GET fees: paid and open charges


Status of this document

This specification has been created collaboratively based on use cases and taking into account existing related standards and products of integrated library systems (ILS), such as NISO Circulation Interchange Protocol (NCIP), SIP2, [X]SLNP,1 DLF-ILS recommendations, and VuFind ILS.

Updates and sources can be found in a public git repository at http://github.com/gbv/paia. The master file paia.md is written in Pandoc’s Markdown. HTML version of the specification and PAIA ontology in RDF/Turtle and in RDF/XML are generated from the master file with makespec. The text of the specification can be distributed freely under the terms of CC-BY-SA.

How to contribute

  • Implement a PAIA server for your library system - either directly to the core, or as wrapper above existing protocols (SIP2, SLNP, NCIP), or based on screen-scraping.
  • Urge libraries to implement a public PAIA server for their patrons.
  • Implement a PAIA client that makes use of patron account information - for instance a mobile app or a web application.
  • Comment on the specification and point to errors.
  • Suggest useful apps and mashups that make use of PAIA.

Conformance requirements

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.

A PAIA server MUST implement PAIA core and it MAY implement PAIA auth. If PAIA auth is not implemented, another way SHOULD BE documented to distribute patron identifiers and access tokens. A PAIA server MAY support only a subset of methods but it MUST return a valid response or error response on every method request, as defined in this document.

General

PAIA consists of two independent parts:

Each method is accessed at an URL with a common base URL for PAIA core methods and common base URL for PAIA auth methods. A server SHOULD NOT provide additional methods at these base URLs and it MUST NOT propagate additional methods at these base URLs as belonging to PAIA.

In the following, the base URL https://example.org/core/ is used for PAIA core and https://example.org/auth/ for PAIA auth.

Authentification in PAIA is based on OAuth 2.0 (RFC 6749) with bearer tokens (RFC 6750) over HTTPS (RFC 2818). For security reasons, PAIA methods MUST be requested via HTTPS only. A PAIA client MUST NOT ignore SSL certificate errors; otherwise access token (PAIA core) or even password (PAIA auth) are compromised by the client.

Request and response format

Each PAIA method is identified by a URL and HTTP verb GET or POST. Method calls expect a set of request parameters and return a JSON object. Request parameters and JSON response of PAIA core can be mapped to RDF.

The special request parameter access token can be sent either as an HTTP query parameter or in an HTTP request header.

For POST methods a request body MUST be included in JSON format in UTF-8. A Content-Type request header MUST be sent with application/json; charset=utf-8 or application/json. A PAIA auth server SHOULD additionally accept URL encoded HTTP POST request bodies with content type application/x-www-form-urlencoded. Request encoding ISO-8859-1 MAY be supported in addition to UTF-8 for these requests.

Clients SHOULD include an approriate User-Agent request header with client name and version.

The HTTP response content type of a PAIA response is a JSON object (HTTP header Content-Type: application/json) in UTF8, optionally wrapped as JSONP (HTTP header Content-Type: application/javascript). The charset SHOULD be included as part of the Content-Type header (application/json; charset=utf-8 or application/javascript; charset=utf-8)

To support non-JSONP access to a PAIA server from any web application via Cross-Origin Resource Sharing (CORS), the PAIA server SHOULD always include the following HTTP response headers:

Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: X-OAuth-Scopes X-Accepted-OAuth-Scopes

Every request parameter and every response field is defined with

  • the name of the parameter/field
  • the ocurrence (occ) of the parameter/field being one of
    • 0..1 (optional, non repeatable)
    • 1..1 (mandatory, non repeatable)
    • 1..n (mandatory, repeatable)
    • 0..n (optional, repeatable)
  • the data type of the parameter/field.
  • a short description

Simple parameter names and response fields consist of lowercase letters a-z only.

Repeatable response fields are encoded as JSON arrays, for instance:

{ "fee" : [ { ... }, { ... } ] }

Hierarchical JSON structures in this document are referenced with a dot (.) as separator. For instance the subfield/parameter item of the doc element is referenced as doc.item and refers to the following JSON structure:

{ "doc" : [ { "item" : "..." } ] }

Special request parameters

The following special request parameters can be added to any request as URL query parameters:

callback : A JavaScript callback method name to return JSONP instead of JSON. The callback MUST only contain alphanumeric characters and underscores. If a callback is given, the response content type MUST be application/javascript. suppress_response_codes : If this parameter is present, all responses MUST be returned with a 200 OK status code, even error responses.

Access tokens and scopes

All PAIA methods, with login from PAIA auth as the only exception, require an access token as a special request parameter. The access token is a so called bearer token as described in RFC 6750. The access token can be sent either as a URL query parameter or in an HTTP header. For instance the following requests both get information about patron 123 with access token vF9dft4qmT:

curl -H "Authorization: Bearer vF9dft4qmT" https://example.org/core/123
curl -H https://example.org/core/123?access_token=vF9dft4qmT

An access token is valid for a limited set of actions, referred to as scope. The following scopes are possible for PAIA core:

read_patron : Get patron information by the patron method. read_fees : Get fees of a patron by the fees method. read_items : Get a patron’s item information by the items method. write_items : Request, renew, and cancel items by the request, renew, and cancel methods.

For instance a particular token with scopes read_patron and read_items may be used for read-only access to information about a patron, including its loans and requested items but not its fees.

A PAIA server SHOULD send the following HTTP headers with every response:

X-OAuth-Scopes : A space-separated list of scopes, the current token has authorized X-Accepted-OAuth-Scopes : A space-separated list of scopes, the current method checks for

For PAIA auth an additional scope is possible:

change_password : Change the password of a patron with the PAIA auth change method.

A PAIA core server SHOULD NOT include the change_password scope in the X-OAuth-Scopes header because the scope is limited to PAIA auth. A PAIA auth server MAY send X-OAuth-Scopes and X-Accepted-OAuth-Scopes headers with both PAIA auth scopes and PAIA core scopes.

Error response

Two classes of errors must be distinguished:

Document errors : Unknown document URIs and failed attempts to request, renew, or cancel a document do not result in an error response. Instead they are indicated by the doc.error response field, which SHOULD contain a human-readable error message. Form and type of document error messages are not specified, so clients SHOULD use these strings for display only.

For instance the following response, returned with HTTP status code 200,
could result from a [request] for an item given by an unknown URI:

~~~~ {.json}
{
  "doc": [ {
    "item": "http://example.org/some/uri",
    "error": "item URI not found"
  } ]
}
~~~~

Request errors : Malformed requests, failed authentication, unsupported methods, and unexpected server errors such as backend downtime etc. MUST result in an error response. An error response is returned with an HTTP status code 4xx (client error) or 5xx (server error) as defined in RFC 2616, unless the request parameter suppress_response_codes is given.

The following section only covers request errors.

The response body of a request error is a JSON object with the following fields (compatible with OAuth error response):

name occ data type description


error 1..1 string alphanumerical error code code 0..1 nonnegative integer HTTP status error code error_description 0..1 string Human-readable error description error_uri 0..1 string Human-readable web page about the error


The code field is REQUIRED with request parameter suppress_response_codes in PAIA core. It SHOULD be omitted with PAIA auth requests to not confuse OAuth clients.

The response header of a request error MUST include a WWW-Authenticate header field to indicate the need of providing a proper access token. The field MAY include a short name of the PAIA service with a "realm" parameter:

WWW-Authentificate: Bearer
WWW-Authentificate: Bearer realm="PAIA Core"

The following error responses are expected:2


error code description


not_found 404 Unknown request URL or unknown patron. Implementations SHOULD first check authentication and prefer error invalid_grant or access_denied to prevent leaking patron identifiers.

not_implemented 501 Known but unsupported request URL (for instance a PAIA auth server server may not implement http://example.org/core/change)

invalid_request 405 Unexpected HTTP verb (all but GET, POST, HEAD)

invalid_request 400 Malformed request (for instance error parsing JSON, unsupported request content type, etc.)

invalid_request 422 The request parameters could be parsed but they don’t match the request method (for instance missing fields, invalid values, etc.)

invalid_grant 401 The access token was missing, invalid, or expired

insufficient_scope 403 The access token was accepted but it lacks permission for the request

access_denied 403 Wrong or missing credentials to get an access token

internal_error 500 An unexpected error occurred. This error corresponds to a bug in the implementation of a PAIA auth/core server

service_unavailable 503 The request couldn't be serviced because of a temporary failure

bad_gateway 502 The request couldn't be serviced because of a backend failure (for instance the library system’s database)

gateway_timeout 504 The request couldn't be serviced because of a backend failure


For instance the following response could result from a request with malformed URIs

{
  "error": "invalid_request",
  "code": "422",
  "error_description": "malformed item identifier provided: must be an URI",
  "error_uri": "http://example.org/help/api"
}

Simple data types

The following data types are used to define request and response format:

string : A Unicode string. Strings MAY be empty. nonnegative integer : An integer number larger than or equal to zero. boolean : Either true or false. Note that omitted boolean values are not false by default but unknown! date : A date value in YYYY-MM-DD format. A datetime value with time and timezone SHOULD be used instead, if possible. datetime : A date value in YYY-MM-DD format, optionally followed by a time value. A time value consists of the letter T followed by hh:mm:ss format, and a timezone indicator (Z for UTC or +hh:mm or -hh:mm) where:

* `YYYY` indicates a year (`0001` through `9999`)
* `MM` indicates a month (`01` through `12`)
* `DD` indicates a day (`01` through `31`)
* `hh` indicates an hour (`00` through `23`)
* `mm` indicates a minute (`00` through `59`)
* `ss` indicates a second (`00` through `59`)

Examples of valid datetime values include `2015-03-20` (a date),
`2016-03-09T11:58:19+10:00`, and `2017-08-21T12:24:28-06:00`.

money : A monetary value with currency (format [0-9]+\.[0-9][0-9] [A-Z][A-Z][A-Z]), for instance 0.80 USD. email : A syntactically correct email address. URI : A syntactically correct URI.

account state : A nonnegative integer representing the current state of a patron account. Possible values are:

0. active
1. inactive
2. inactive because account expired
3. inactive because of outstanding fees
4. inactive because account expired and outstanding fees

A PAIA server MAY define additional states which can be mapped to `1` by PAIA 
clients. In JSON account states MUST be encoded as numbers instead of strings.

service status : A nonnegative integer representing the current status in fulfillment of a service. In most cases the service is related to a document, so the service status is a relation between a particular document and a particular patron. Possible values are:

0. no relation (this applies to most combinations of document and patron, and
   it can be expected if no other state is given)
1. reserved (the document is not accessible for the patron yet, but it will be)
2. ordered (the document is being made accessible for the patron)
3. held (the document is on loan by the patron)
4. provided (the document is ready to be used by the patron)
5. rejected

A PAIA server MUST NOT define any other service status. In JSON service status
MUST be encoded as numbers instead of strings.

Document data type

A document is a key-value structure with the following fields

name occ data type description


status 1..1 service status status (0, 1, 2, 3, 4, or 5) item 0..1 URI URI of a particular copy edition 0..1 URI URI of a the document (no particular copy) requested 0..1 URI URI that was originally requested about 0..1 string textual description of the document label 0..1 string call number, shelf mark or similar item label queue 0..1 nonnegative integer number of waiting requests for the document or item renewals 0..1 nonnegative integer number of times the document has been renewed reminder 0..1 nonnegative integer number of times the patron has been reminded starttime 0..1 datetime date and time when the status began
endtime 0..1 datetime date and time when the status will expire duedate 0..1 date date when the current status will expire (deprecated) cancancel 0..1 boolean whether an ordered or provided document can be canceled canrenew 0..1 boolean whether a document can be renewed error 0..1 string error message, for instance if a request was rejected storage 0..1 string location of the document storageid 0..1 URI location URI


For each document at least an item URI or an edition URI MUST be given. Together, item and edition URI MUST uniquely identify a document within the set of documents related to a patron.

The fields starttime and endtime MUST be interpreted as following:

status starttime endtime


0 - - 1 when the document was reserved when the reserved document is expected to be available 2 when the document was ordered when the ordered document is expected to be available 3 when the document was lend when the loan period ends or ended (due) 4 when the document is provided when the provision will expire 5 when the request was rejected -

Note that timezone information is mandatory in these fields. The field duedate is deprecated. Clients SHOULD only use it as endtime if no endtime was given.

The response fields label, storage, storageid, and queue correspond to properties in DAIA.

Examples

An example of a documentserialized in JSON is given below. In this case a general document (http://example.org/documents/9876543) was requested an mapped to a particular copy (http://example.org/items/barcode1234567) by the PAIA server. The copy turned out to be lost, so the request was rejected (status 5) at 2014-07-12, 14:07 UTC.

{
   "status":    5,
   "item":      "http://example.org/items/barcode1234567",
   "edition":   "http://example.org/documents/9876543",
   "requested": "http://example.org/documents/9876543",
   "starttime": "2014-07-12T14:07Z",
   "error":     "sorry, we found out that our copy is lost!"
}

See documents in RDF for a mapping in RDF.

PAIA core

Each API method of PAIA core is accessed at a URL that includes the URI escaped patron identifier.

patron

purpose : Get general information about a patron HTTP verb and URL : GET https://example.org/core/**{uri_escaped_patron_identifier}** scope : read_patron response fields : name occ data type description --------- ------ --------------- ------------------------------ name 1..1 string full name of the patron email 0..1 email email address of the patron expires 0..1 datetime patron account expiry status 0..1 account state current state (0, 1, 2, or 3) --------- ------ --------------- ------------------------------- mapping to RDF : see patrons in RDF

Additional fields such as address may be added in a later revision.

Example

GET /core/123 HTTP/1.1
Host: example.org
User-Agent: MyPAIAClient/1.0
Accept: application/json
Authorization: Bearer a0dedc54bbfae4b
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
X-Accepted-OAuth-Scopes: read_patron
X-OAuth-Scopes: read_fees read_items read_patron write_items
{
  "name": "Jane Q. Public", 
  "email": "jane@example.org",
  "expires": "2015-05-18",
  "status": 0
}

items

purpose : Get a list of loans, reservations and other items related to a patron HTTP verb and URL : GET https://example.org/core/**{uri_escaped_patron_identifier}**/items scope : read_item response fields : name occ data type description ------ ------ ----------- ----------------------------------------- doc 0..n document list of documents (order is irrelevant) ------ ------ ----------- ----------------------------------------- mapping to RDF : see documents in RDF

In most cases, each document will have an item URI for a particular copy, but users may also have requested an edition.

Example

GET /core/123/items HTTP/1.1
Host: example.org
User-Agent: MyPAIAClient/1.0
Accept: application/json
Authorization: Bearer a0dedc54bbfae4b
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
X-Accepted-OAuth-Scopes: read_patron
X-OAuth-Scopes: read_items read_patron
{
  "doc": [{
    "status": 3,
    "item": "http://bib.example.org/105359165",
    "edition": "http://bib.example.org/9782356",
    "about": "Maurice Sendak (1963): Where the wild things are",
    "label": "Y B SEN 101",
    "queue": 0,
    "renewals": 0,
    "reminder": 0,
    "starttime": "2014-05-08T12:37Z",
    "endtime": "2014-06-09",
    "duedate": "2014-06-09"
    "cancancel": false,
  },{
    "status": 1,
    "item": "http://bib.example.org/8861930",
    "about": "Janet B. Pascal (2013): Who was Maurice Sendak?",
    "label": "BIO SED 03",
    "queue": 1,
    "starttime": "2014-05-12T18:07Z",
    "endtime": "2014-05-24",
    "cancancel": true,
    "storage": "pickup service desk",
    "storageid": "http://bib.example.org/library/desk/7",
  }]
}

request

purpose : Request one or more items for reservation or delivery. HTTP verb and URL : POST https://example.org/core/**{uri_escaped_patron_identifier}**/request scope : write_item request parameters : name occ data type description --------------- ------ ----------- ------------------------------ doc 1..n list of documents requested doc.item 0..1 URI URI of a particular item doc.edition 0..1 URI URI of a particular edition doc.storage 0..1 string Requested pickup location doc.storageid 0..1 URI Requested pickup location --------------- ------ ----------- ------------------------------ response fields : name occ data type description ------ ------ ----------- ----------------------------------------- doc 1..n document list of documents (order is irrelevant) ------ ------ ----------- ----------------------------------------- mapping to RDF : see documents in RDF

The response SHOULD include the same documents as requested. A client MAY also use the items method to get the service status after request.

renew

purpose : Renew one or more documents usually held by the patron. PAIA servers MAY also allow renewal of reserved, ordered, and provided documents. HTTP verb and URL : POST https://example.org/core/**{uri_escaped_patron_identifier}**/renew scope : write_item request parameters : ------------- ------ -------- ------------------------------ doc 1..n list of documents to renew doc.item 0..1 URI URI of a particular item doc.edition 0..1 URI URI of a particular edition ------------- ------ -------- ----------------------------- response fields : name occ data type description ------ ------ ----------- ----------------------------------------- doc 1..n document list of documents (order is irrelevant) ----- ------ ------------ ----------------------------------------- mapping to RDF : see documents in RDF

The response SHOULD include the same documents as requested. A client MAY also use the items method to get the service status after renewal.

cancel

purpose : Cancel requests for items. HTTP verb and URL : POST https://example.org/core/**{uri_escaped_patron_identifier}**/cancel scope : write_item request parameters : name occ data type ------------- ------ ----------- ----------------------------- doc 1..n list of documents to cancel doc.item 0..1 URI URI of a particular item doc.edition 0..1 URI URI of a particular edition ------------- ------ ----------- ----------------------------- response fields : name occ data type description ------ ------ ----------- ----------------------------------------- doc 1..n document list of documents (order is irrelevant) ------ ------ ----------- ----------------------------------------- mapping to RDF : see documents in RDF

fees

purpose : Look up current fees of a patron. HTTP verb and URL : GET https://example.org/core/**{uri_escaped_patron_identifier}**/fees scope : read_fees response fields : name occ data type description ------------- ------ ----------- ---------------------------------------- amount 0..1 money Sum of all fees. May also be negative! fee 0..n list of fees fee.amount 1..1 money amount of a single fee fee.date 0..1 date date when the fee was claimed fee.about 0..1 string textual information about the fee fee.item 0..1 URI item that caused the fee fee.edition 0..1 URI edition that caused the fee fee.feetype 0..1 string textual description of the type of fee fee.feeid 0..1 URI URI of the type of fee ------------- ------ ----------- ---------------------------------------- mapping to RDF : see fees in RDF

If given, fee.feetype MUST NOT refer to the individual fee but to the type of fee. A PAIA server MUST return identical values of fee.feetype for identical fee.feeid. The default value of fee.feeid is:

If a fee was caused by a document (fee.item or fee.edition), the value of fee.feeid SHOULD be a class URI from the Document Service Ontology.

PAIA auth

PAIA auth defines three methods for authentication based on username and password. These methods can be used to get access tokens and patron identifiers, which are required to access PAIA core methods. There MAY be additional or alternative ways to distribute and manage access tokens and patron identifiers.

There is no strict one-to-one relationship between username/password and patron identifier/access token, but a username SHOULD uniquely identify a patron identifier. A username MAY even be equal to a patron identifier, but this is NOT RECOMMENDED. An access token MUST NOT be equal to the password of the same user.

A PAIA auth server acts as OAuth authorization server (RFC 6749) with password credentials grant, as defined in section 4.3 of the OAuth 2.0 specification. The access tokens provided by the server are so called OAuth 2.0 bearer tokens (RFC 6750).

A PAIA auth server MUST protect against brute force attacks (e.g. using rate-limitation or generating alerts). It is RECOMMENDED to further restrict access to PAIA auth to specific clients, for instance by additional authorization.

login

The PAIA auth login method is the only PAIA method that does not require an access token as part of the query.

purpose : Get a patron identifier and access token to access patron information URL : POST https://example.org/auth/**login** (in addition a PAIA auth server MAY support HTTP GET requests) request parameters : name occ data type ------------ ------ ----------- -------------------------------- username 1..1 string User name of a patron password 1..1 string Password of a patron grant_type 1..1 string Fixed value set to "password" scope 0..1 string Space separated list of scopes ------------ ------ ----------- --------------------------------

If no scope parameter is given, it is set to the default value read_patron read_fees read_items write_items for full access to all PAIA core methods (see access tokens and scopes ).

The response format is a JSON structure as defined in section 5.1 (successful response) and section 5.2 (error response) of OAuth 2.0. The PAIA auth server MAY grant different scopes than requested for, for instance if the account of a patron has expired, so the patron should not be allowed to request and renew new documents.

response fields : name occ data type description -------------- ------ --------------------- ------------------------------------------------- patron 1..1 string Patron identifier access_token 1..1 string The access token issued by the PAIA auth server token_type 1..1 string Fixed value set to "Bearer" or "bearer" scope 1..1 string Space separated list of granted scopes expires_in 0..1 nonnegative integer The lifetime in seconds of the access token -------------- ------ --------------------- -------------------------------------------------

Example of a successful login request

POST /auth/login
Host: example.org
User-Agent: MyPAIAClient/1.0
Accept: application/json
Content-Type: application/json
Content-Length: 85
{
  "username": "alice02",
  "password": "jo-!97kdl+tt",
  "grant_type": "password"
}
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
X-OAuth-Scopes: read_patron read_fees read_items write_items
Cache-Control: no-store
Pragma: no-cache
{
  "access_token": "2YotnFZFEjr1zCsicMWpAA",
  "token_type": "Bearer",
  "expires_in": 3600,
  "patron": "8362432",
  "scope": "read_patron read_fees read_items write_items"
}

Example of a rejected login request

HTTP/1.1 403 Forbidden
Content-Type: application/json; charset=utf-8
Cache-Control: no-store
Pragma: no-cache
WWW-Authenticate: Bearer realm="PAIA auth example"
{
  "error": "access_denied",
  "error_description": "invalid patron or password"
}

logout

purpose : Invalidate an access token URL : POST https://example.org/auth/**logout** (in addition a PAIA auth server MAY support HTTP GET requests) request parameters : name occ data type description -------- ------ ----------- ------------------- patron 1..1 string patron identifier -------- ------ ----------- ------------------- response fields : name occ data type description -------- ------ ----------- ------------------- patron 1..1 string patron identifier -------- ------ ----------- -------------------

The logout method invalidates an access token, independent from the previous lifetime of the token. On success, the server MUST invalidate at least the access token that was used to access this method. The server MAY further invalidate additional access tokens that were created for the same patron.

change

purpose : Change password of a patron URL : POST https://example.org/auth/**change** scope : change_password request parameters : name occ data type description -------------- ------ ----------- ---------------------------- patron 1..1 string Patron identifier username 1..1 string User name of the patron old_password 1..1 string Password of the patron new_password 1..1 string New password of the patron -------------- ------ ----------- ---------------------------- response fields : name occ data type description -------- ------ ----------- ------------------- patron 1..1 string patron identifier -------- ------ ----------- -------------------

The server MUST check

  • the access token
  • whether username and password match
  • whether the user identified by username has scope change_password

A PAIA server MAY reject this method and return an error response with error code access_denied (403) or error code not_implemented (501). On success, the patron identifier is returned.

PAIA Ontology

Information expressed by PAIA core responses in JSON, can be expressed in RDF as well. The PAIA Ontology defines an RDF ontology for this purpose.

The Ontology has not been finalized yet!

PAIA Ontology reuses classes and properties from other ontologies and defines a small set of additional classes, properties, and individuals to express information about patrons in RDF, documents in RDF, and fees in RDF.

RDF Serializations of PAIA Ontology are available in RDF/Turtle (paia.ttl) and in RDF/XML (paia.owl).

Namespaces and Ontology

The URI namespace of PAIA ontology is http://purl.org/ontology/paia#. The namespace prefix paia is recommended. The URI of PAIA ontology as a whole is http://purl.org/ontology/paia.

@prefix paia: <http://purl.org/ontology/paia#> .
@base         <http://purl.org/ontology/paia> .

The following namspace prefixes are used to refer to related ontologies:

@prefix bibo:    <http://purl.org/ontology/bibo/> .
@prefix cc:      <http://creativecommons.org/ns#> .
@prefix daia:    <http://purl.org/ontology/daia/> .
@prefix dct:     <http://purl.org/dc/terms/> .
@prefix dso:     <http://purl.org/ontology/dso#> .
@prefix frbr:    <http://purl.org/vocab/frbr/core#> .
@prefix holding: <http://purl.org/ontology/holding#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ssso:    <http://purl.org/ontology/ssso#> .
@prefix vann:    <http://purl.org/vocab/vann/> .
@prefix voaf:    <http://purl.org/vocommons/voaf#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .

PAIA Ontology is defined in RDF/Turtle as following:

<> a owl:Ontology, voaf:Vocabulary ;
    dct:title "PAIA Ontology"@en ;
    rdfs:label "PAIA" ;
    vann:preferredNamespacePrefix "paia" ;
    vann:preferredNamespaceUri "http://purl.org/ontology/paia#" ;
    dct:description "An ontology to express library patron information, such as loans, reservations, and fees."@en ;
    dct:modified "{GIT_REVISION_DATE}"^^xsd:date ;
    owl:versionInfo "{VERSION}" ;
    cc:license <http://creativecommons.org/licenses/by/3.0/> ;
    dct:creator "Jakob Voß" . 

Patrons in RDF

A patron account, as returned by the PAIA core method patron is represented by an instance of the class paia:PatronAccount. Every patron account is also an instance of sioc:User (and therefore also of foaf:OnlineAccount) and an instance of particip:Role. The date of expiration can be expressed with particip:endDate. The patron identifier is given with foaf:AccountName.

A patron account belongs to a person or another foaf:Agent, connected to with sioc:account_of and foaf:account. The full name of a patron is given with foaf:name and its email address can be given with foaf:mbox.

@prefix sioc:     <http://rdfs.org/sioc/ns#> .
@prefix foaf:     <http://xmlns.com/foaf/0.1/> .
@prefix particip: <http://purl.org/vocab/participation/schema#> .

paia:PatronAccount a owl:Class ;
    rdfs:label "PatronAccount"@en ;
    rdfs:subClassOf sioc:User, foaf:OnlineAccount, particip:Role ;
    rdfs:isDefinedBy <> ;
    rdfs:seeAlso
        sioc:account_of, foaf:account, particip:endDate, 
        foaf:name, foaf:mbox . 

An instance of paia:patronAccount is assumed to be active, unless it is also an instance of paia:InactivePatronAccount.

paia:InactivePatronAccount a owl:Class ;
    rdfs:label "InactivePatronAccount"@en ;
    rdfs:isDefinedBy <> ;
    rdfs:subClassOf paia:PatronAccount .

Reasons for inactivation can be given with property paia:inactivationReason. The inactivation reasons paia:AccountExpired and paia:OutstandingFees SHOULD be linked to.

paia:inactivationReason a rdfs:Property ;
    rdfs:label "inactivationReason"@en ; 
    rdfs:isDefinedBy <> ;
    rdfs:domain paia:InactivePatronAccount . 
paia:AccountExpired a rdfs:Resource ;
    rdfs:isDefinedBy <> ;
    rdfs:label "AccountExpired"@en .
paia:OutstandingFees a rdfs:Resource ;
    rdfs:isDefinedBy <> ;
    rdfs:label "OutstandingFees"@en .

Items in RDF

Lists of documents, as returned by the PAIA core methods items, request, renew, and cancel, are represented as sets of events. Each event is an instance of ssso:ServiceEvent from the Simple Service Status Ontology (SSSO) and an instance of of a specific document service class defined in the Document Service Ontology (DSO).

The current service status of a document service event is given by an instance-relationship (rdf:type) with one of the following classes:

The specific type of service is further given by in instance-relationship with on of the following classes (this needs some clarification!):

  • dso:Loan (borrow to use at home for a limited time)
  • dso:Presentation (view/use within the boundaries of a library)
  • dso:Interloan (get a document/copy mediated from another library)
  • dso:OpenAccess (get directed to the location of a publicly available document)
ssso:ServiceEvent a owl:Class ;
    rdfs:label "ServiceEvent"@en ;
    rdfs:isDefinedBy <http://purl.org/ontology/ssso> .
dso:DocumentService a owl:Class ;
    rdfs:label "DocumentService"@en ;
    rdfs:isDefinedBy <http://purl.org/ontology/dso> .
dso:ServiceConsumer a owl:Class ;
    rdfs:label "ServiceConsumer"@en ;
    rdfs:isDefinedBy <http://purl.org/ontology/service> .

The service event is connected to a patron as service:ServiceConsumer (with property service:consumedBy) and to a document (with a property yet to be defined).

The starttime end endtime can be mapped to any of the following properties, among others:

starttime : schema:startDate, prov:prov:startedAtTime, prov:qualifiedStart endtime : schema:endDate, prov:endedAtTime, prov:qualifiedEnd

Fees in RDF

A fee, as returned by the method fees, is an amount of money that has to be paid by a patron for some reason. Each fee is represented by the following properties of a ssso:ServiceEvent instance:

  • dc:date (or a more specific sub property) for fee.date
  • schema:price and schema:priceCurrency for fee.amount
  • dc:description for fee.about
  • Maybe schema:itemOffered to connect to a document or document service (item and/or edition).

The type of fee is represented by a class from the Document Service Ontology or by another subclass of class ServiceEvent from the Simple Service Status Ontology. All URIs returned in fee.feeid SHOULD be resolvable as Linked Open Data.

Glossary

access token : A confidential random string that must be sent with each PAIA request for authentication. document : A concrete or abstract document, such as a work, or an edition. item : A concrete copy of a document, for instance a particular physical book. PAIA auth server : HTTP endpoint that implements the PAIA auth specification, so all PAIA auth methods can be accessed at a common base URL. PAIA core server : HTTP endpoint that implements the PAIA core specification, so all PAIA core methods can be accessed at a common base URL. patron : An account of a library user patron identifier : A Unicode string that identifies a library patron account.

Security Considerations

Security of OAuth 2.0 with bearer tokens relies on correct application of HTTPS. It is known that SSL certificate errors are often ignored just because of laziness. It MUST be clear to all implementors that this breaks the chain of trust and is as secure as sending access tokens in plain text.

To limit the risk of spoiled access tokens, PAIA servers SHOULD put limits on the lifetime of access tokens and on the number of allowed requests per minute among other security limitations.

It is also known that several library systems allow weak passwords. For this reason PAIA auth servers MUST follow appropriate security measures, such as protecting against brute force attacks and blocking accounts with weak passwords or with passwords that have been sent unencrypted.

Informative parts

This non-normative section contains additional examples and explanations to illustrate the semantics of PAIA concepts and methods and usage.

Transitions of service states

Six service status data type values are possible. One document can have different status for different patrons and for different times. The following table illustrates reasonable transitions of service status with time for a fixed patron. For instance some document held by another patron is first requested (0 → 1) with PAIA method request, made available after return (1 → 4), picked up (4 → 3), renewed after some time with PAIA method renew (3 → 3) and later returned (3 → 0).

transition → 0 1: reserved 2: ordered 3: held 4: provided 5: rejected


0 = request request loan request request 1: reserved cancel = available loan available patron inactive, document lost ... 2: ordered cancel / = loan available patron inactive, document lost ... 3: held return / / renew / / 4: provided not picked up / / loan = patron inactive, ... 5: rejected time passed patron active patron active / patron active =


Transitions marked with "/" may also be possible in special circumstances: for instance a book ordered from the stacks (status 2) may turn out to be damaged, so it is first repaired and reserved for the patron meanwhile (status 1). Transitions for digital publications may also be different. Note that a PAIA server does not need to implement all service status. A reasonable subset is to only support 0, 1, 3, and 5.

Digital documents

The handling of digital documents is subject to frequently asked questions. The following rules of thumb may help:

  • For most digital documents the concept of an item does not make sense and there is no URI of a particular copy. In this case the document.edition field should be used instead of document.item.
  • For some digital documents there may be no distinction between status provided and status held. The status provided should be preferred when the same document can be used by multiple patrons at the same time, and held should be used when the document can exclusively be used by the patron.

PAIA core extensions to non-document services

A future version of PAIA may be extended to support services not related to documents. For instance a patron may reserve a cabin or some other facility. The following methods may be added to PAIA core for this purpose:

services : List non-document services related to a patron - similar to method items.

servicetypes : Get a list of services that a patron may request, each with URI, name, and short description.


References

Normative References

Informative References

Revision history

The current version of this document was last modified at {GIT_REVISION_DATE} with revision {GIT_REVISION_HASH}.

{GIT_CHANGES}

Footnotes

  1. The Simple Library Network Protocol (SLNP) and its variant XSLNP is an internal protocol of the the SISIS-Sunrise™ library system, providing access to patron information, among other functionality. OCLC does not allow publication of the specification or public use of SLNP.

  2. The error list was compiled from the HTTP and OAuth 2.0 specifications, the Twitter API, the StackExchange API, and the GitHub API.