Extend comment about start facet parameter
[yaz-moved-to-github.git] / src / facet.asn
index e4adea1..c3e964e 100644 (file)
@@ -7,15 +7,16 @@ FacetList ::= SEQUENCE OF FacetField;
 FacetField ::= SEQUENCE {
   -- attributes will specify:
   --   1=use (field name)
-  --   2=sortorder 0=most frequent, 1=least frequent, ..
+  --   2=sortorder 0=count descending, 1=alpha ascending  ..
   --   3=limit (integer)
+  --   4=start (integer), starting from 1
   attributes [1] IMPLICIT AttributeList,
-  terms [2] IMPLICIT SEQUENCE OF FacetTerm OPTIONAL
+  terms      [2] IMPLICIT SEQUENCE OF FacetTerm OPTIONAL
 }
 
 FacetTerm ::= SEQUENCE {
-  term [1] IMPLICIT Term,
-  count [2] IMPLICIT INTEGER
+  term  Term,
+  count INTEGER
 }
 
 END