/usr/share/yaz/z39.50/facet.asn is in libyaz4-dev 4.2.30-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | UserInfoFormat-facet-1
{Z39-50-userInfoFormat facet-1 (1)} DEFINITIONS ::=
BEGIN
IMPORTS AttributeList, Term FROM Z39-50-APDU-1995;
FacetList ::= SEQUENCE OF FacetField;
FacetField ::= SEQUENCE {
-- attributes will specify:
-- 1=use (field name)
-- 2=sortorder 0=most frequent, 1=least frequent, ..
-- 3=limit (integer)
attributes [1] IMPLICIT AttributeList,
terms [2] IMPLICIT SEQUENCE OF FacetTerm OPTIONAL
}
FacetTerm ::= SEQUENCE {
term Term,
count INTEGER
}
END
|