File: univres.asn

package info (click to toggle)
yaz 4.2.30-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 15,120 kB
  • ctags: 13,367
  • sloc: xml: 119,746; ansic: 66,073; sh: 11,795; tcl: 2,125; makefile: 1,308; yacc: 371
file content (23 lines) | stat: -rw-r--r-- 475 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ResourceReport-Format-Universe-1
{Z39-50-resourceReport universe-1 (1000)} DEFINITIONS ::=
BEGIN
IMPORTS StringOrNumeric FROM Z39-50-APDU-1995;
--

UniverseReportHits ::= SEQUENCE {
	database	StringOrNumeric,
	hits	StringOrNumeric
}

UniverseReportDuplicate ::= SEQUENCE {
	hitno StringOrNumeric
}

UniverseReport ::= SEQUENCE {
	totalHits INTEGER,
	report CHOICE {
		databaseHits 	[0] IMPLICIT UniverseReportHits,
		duplicate 		[1] IMPLICIT UniverseReportDuplicate
	}
}
END