From: Heikki Levanto Date: Thu, 3 May 2007 08:35:10 +0000 (+0000) Subject: Undoing a file rename X-Git-Tag: YAZ.3.0.2~26 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=0b2c97b7e0af33f239cfdfebbc200f7eb5c9fcdd Undoing a file rename --- diff --git a/src/oclc-ill-req-ext.asn b/src/oclc-ill-req-ext.asn new file mode 100644 index 0000000..9226c26 --- /dev/null +++ b/src/oclc-ill-req-ext.asn @@ -0,0 +1,45 @@ +-- Couple of OCLC-specific extensions to their ILL-Request + +OCLCILLRequestExtension DEFINITIONS ::= +--The object identifier is 1.0.10161.13.2 +BEGIN +IMPORTS ILL-String FROM ISO-10161-ILL-1; + +OCLCILLRequestExtension ::=SEQUENCE { + clientDepartment [0] ILL-String OPTIONAL, + paymentMethod [1] ILL-String OPTIONAL, + uniformTitle [2] ILL-String OPTIONAL, + dissertation [3] ILL-String OPTIONAL, + issueNumber [4] ILL-String OPTIONAL, + volume [5] ILL-String OPTIONAL, + affiliations [6] ILL-String OPTIONAL, + source [7] ILL-String OPTIONAL +} + +-- If present, systemNo should contain an OCLC number. To encode the OCLC +-- number, use the external object for system number defined by the Library and +-- Archives Canada. +-- The object identifier is 1.2.124.10161.2 + +SystemNo ::= SEQUENCE SIZE (1..10) OF SEQUENCE + system System, + recordNo RecordNo +} + +System ::= ENUMERATED { + dobis (1), + candoc (2), + oclc (3), + rlin (4), + utlas (5), + other (6) +} +--Do not include the acronym for the system as part of the record number unless +--"other (6)" is chosen. + + RecordNo ::= ILL-String (SIZE (1..50)) + + + +END +