LISTSERV mailing list manager LISTSERV 16.0

Help for ZNG Archives


ZNG Archives

ZNG Archives


[email protected]


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

ZNG Home

ZNG Home

ZNG  April 2006

ZNG April 2006

Subject:

Re: Where is the ZeeRex 2.1 Schema

From:

Robert Sanderson <[log in to unmask]>

Reply-To:

SRU (Search and Retrieve Via URL) Implementors

Date:

Thu, 13 Apr 2006 16:56:16 +0100

Content-Type:

MULTIPART/MIXED

Parts/Attachments:

Parts/Attachments

TEXT/PLAIN (10 lines) , zeerex-2.1.dtd (1 lines) , zeerex-2.1.xsd (1 lines)


On Thu, 13 Apr 2006, Mike Taylor wrote:
>I can't find a ZeeRex 2.1 schema or DTD on the Web, corresponding to
>the one in Appendix A of the Z39.92 DSTU.  Do you have it?  Thanks.

Attached the DTD and auto-generated schema.

Rob


<!-- ZeeRex DTD, version 2.1/2005-08-04 --> <!-- Maintainer: Robert Sanderson, [log in to unmask] --> <!ELEMENT explain (serverInfo, databaseInfo?, metaInfo?, indexInfo?, (recordInfo|schemaInfo)?, configInfo?)> <!ATTLIST explain id CDATA #IMPLIED> <!-- Server Info --> <!ELEMENT serverInfo (host, port, database, authentication?)> <!ATTLIST serverInfo protocol CDATA #IMPLIED version CDATA #IMPLIED transport CDATA #IMPLIED method CDATA #IMPLIED> <!ELEMENT host (#PCDATA)> <!ELEMENT port (#PCDATA)> <!ELEMENT database (#PCDATA)> <!ELEMENT authentication (open | (user?, group?, password?))> <!ATTLIST authentication type CDATA #IMPLIED required (true|false) "true"> <!ELEMENT open (#PCDATA)> <!ELEMENT user (#PCDATA)> <!ELEMENT group (#PCDATA)> <!ELEMENT password (#PCDATA)> <!-- Database Info --> <!ELEMENT databaseInfo (title*, description*, (extent | history | langUsage | restrictions)*, agents?, links?, implementation?)> <!-- Note that title is used in more than just databaseInfo --> <!ELEMENT title (#PCDATA)> <!ATTLIST title primary (true|false) #IMPLIED lang CDATA #IMPLIED> <!ELEMENT description (#PCDATA)> <!ATTLIST description primary (true|false) #IMPLIED lang CDATA #IMPLIED> <!ELEMENT extent (#PCDATA)> <!ATTLIST extent numberOfRecords CDATA #IMPLIED primary (true|false) #IMPLIED lang CDATA #IMPLIED> <!ELEMENT history (#PCDATA)> <!ATTLIST history lastUpdate CDATA #IMPLIED primary (true|false) #IMPLIED lang CDATA #IMPLIED> <!ELEMENT langUsage (#PCDATA)> <!ATTLIST langUsage codes CDATA #IMPLIED primary (true|false) #IMPLIED lang CDATA #IMPLIED> <!ELEMENT restrictions (#PCDATA)> <!ATTLIST restrictions primary (true|false) #IMPLIED lang CDATA #IMPLIED> <!ELEMENT agents (agent+)> <!ELEMENT agent (#PCDATA)> <!ATTLIST agent type CDATA #IMPLIED identifier CDATA #IMPLIED> <!ELEMENT implementation (agents?, title*)> <!ATTLIST implementation identifier CDATA #IMPLIED version CDATA #IMPLIED> <!ELEMENT links (link+)> <!ELEMENT link (#PCDATA)> <!ATTLIST link type CDATA #IMPLIED> <!-- Meta Info --> <!ELEMENT metaInfo (dateModified, (aggregatedFrom, dateAggregated)?)> <!ELEMENT dateModified (#PCDATA)> <!ELEMENT aggregatedFrom (#PCDATA)> <!ELEMENT dateAggregated (#PCDATA)> <!-- Index Info --> <!ELEMENT indexInfo ((set | index | sortKeyword)+)> <!ELEMENT set (title*)> <!ATTLIST set name CDATA #REQUIRED identifier CDATA #REQUIRED> <!ELEMENT index (title*, map+, configInfo?)> <!ATTLIST index id CDATA #IMPLIED search (true|false) #IMPLIED scan (true|false) #IMPLIED sort (true|false) #IMPLIED> <!ELEMENT sortKeyword (#PCDATA)> <!ELEMENT map ((attr+)|name)> <!ATTLIST map primary (true|false) "false"> <!ELEMENT name (#PCDATA)> <!ATTLIST name set CDATA #IMPLIED> <!ELEMENT attr (#PCDATA)> <!ATTLIST attr type CDATA #REQUIRED set CDATA #IMPLIED> <!-- Record Info and Schema Info --> <!ELEMENT recordInfo (recordSyntax+)> <!ELEMENT recordSyntax (elementSet+)> <!ATTLIST recordSyntax name CDATA #IMPLIED identifier CDATA #IMPLIED> <!ELEMENT elementSet (title*)> <!ATTLIST elementSet name CDATA #REQUIRED identifier CDATA #IMPLIED> <!ELEMENT schemaInfo (schema+)> <!ELEMENT schema (title*)> <!ATTLIST schema identifier CDATA #REQUIRED name CDATA #REQUIRED location CDATA #IMPLIED sort (true|false) "false" retrieve (true|false) "true"> <!-- Config Info --> <!ELEMENT configInfo ((default|setting|supports)*)> <!ELEMENT default (#PCDATA)> <!ATTLIST default type CDATA #REQUIRED> <!ELEMENT setting (#PCDATA)> <!ATTLIST setting type CDATA #REQUIRED> <!ELEMENT supports (#PCDATA)> <!ATTLIST supports type CDATA #REQUIRED>
<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema'> <xs:annotation> -- This schema was automatically generated by Syntext Dtd2Schema -- -- conversion tool (from file: zeerex-2.1.dtd) -- -- Copyright (C) 2002, 2003 Syntext Inc. See http://www.syntext.com for updates. -- </xs:annotation> <xs:element name='agent'> <xs:complexType mixed='true'> <xs:attribute name='type'/> <xs:attribute name='identifier'/> </xs:complexType> </xs:element> <xs:element name='agents'> <xs:complexType> <xs:sequence> <xs:element ref='agent' maxOccurs='unbounded'/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='aggregatedFrom'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='attr'> <xs:complexType mixed='true'> <xs:attribute name='type' use='required'/> <xs:attribute name='set'/> </xs:complexType> </xs:element> <xs:element name='authentication'> <xs:complexType> <xs:choice> <xs:element ref='open'/> <xs:sequence> <xs:element ref='user' minOccurs='0'/> <xs:element ref='group' minOccurs='0'/> <xs:element ref='password' minOccurs='0'/> </xs:sequence> </xs:choice> <xs:attribute name='type'/> <xs:attribute name='required' default='true'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> </xs:element> <xs:element name='configInfo'> <xs:complexType> <xs:sequence> <xs:choice minOccurs='0' maxOccurs='unbounded'> <xs:element ref='default'/> <xs:element ref='setting'/> <xs:element ref='supports'/> </xs:choice> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='database'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='databaseInfo'> <xs:complexType> <xs:sequence> <xs:element ref='title' minOccurs='0' maxOccurs='unbounded'/> <xs:element ref='description' minOccurs='0' maxOccurs='unbounded'/> <xs:choice minOccurs='0' maxOccurs='unbounded'> <xs:element ref='extent'/> <xs:element ref='history'/> <xs:element ref='langUsage'/> <xs:element ref='restrictions'/> <xs:element ref='agents'/> <xs:element ref='links'/> <xs:element ref='implementation'/> </xs:choice> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='dateAggregated'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='dateModified'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='default'> <xs:complexType mixed='true'> <xs:attribute name='type' use='required'/> </xs:complexType> </xs:element> <xs:element name='description'> <xs:complexType mixed='true'> <xs:attribute name='primary'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='lang'/> </xs:complexType> </xs:element> <xs:element name='elementSet'> <xs:complexType> <xs:sequence> <xs:element ref='title' minOccurs='0' maxOccurs='unbounded'/> </xs:sequence> <xs:attribute name='name' use='required'/> <xs:attribute name='identifier'/> </xs:complexType> </xs:element> <xs:element name='explain'> <xs:complexType> <xs:sequence> <xs:element ref='serverInfo'/> <xs:element ref='databaseInfo' minOccurs='0'/> <xs:element ref='metaInfo' minOccurs='0'/> <xs:element ref='indexInfo' minOccurs='0'/> <xs:choice minOccurs='0'> <xs:element ref='recordInfo'/> <xs:element ref='schemaInfo'/> </xs:choice> <xs:element ref='configInfo' minOccurs='0'/> </xs:sequence> <xs:attribute name='id'/> </xs:complexType> </xs:element> <xs:element name='extent'> <xs:complexType mixed='true'> <xs:attribute name='primary'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='lang'/> </xs:complexType> </xs:element> <xs:element name='group'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='history'> <xs:complexType mixed='true'> <xs:attribute name='primary'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='lang'/> </xs:complexType> </xs:element> <xs:element name='host'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='implementation'> <xs:complexType> <xs:sequence> <xs:element ref='title' minOccurs='0' maxOccurs='unbounded'/> </xs:sequence> <xs:attribute name='identifier'/> <xs:attribute name='version'/> </xs:complexType> </xs:element> <xs:element name='index'> <xs:complexType> <xs:sequence> <xs:element ref='title' minOccurs='0' maxOccurs='unbounded'/> <xs:element ref='map' maxOccurs='unbounded'/> <xs:element ref='configInfo' minOccurs='0'/> </xs:sequence> <xs:attribute name='id'/> <xs:attribute name='search'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='scan'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='sort'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> </xs:element> <xs:element name='indexInfo'> <xs:complexType> <xs:sequence> <xs:choice maxOccurs='unbounded'> <xs:element ref='set'/> <xs:element ref='index'/> <xs:element ref='sortKeyword'/> </xs:choice> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='langUsage'> <xs:complexType mixed='true'> <xs:attribute name='codes'/> <xs:attribute name='primary'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='lang'/> </xs:complexType> </xs:element> <xs:element name='link'> <xs:complexType mixed='true'> <xs:attribute name='type'/> </xs:complexType> </xs:element> <xs:element name='links'> <xs:complexType> <xs:sequence> <xs:element ref='agents' minOccurs='0'/> <xs:element ref='link' maxOccurs='unbounded'/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='map'> <xs:complexType> <xs:choice> <xs:element ref='attr' maxOccurs='unbounded'/> <xs:element ref='name'/> </xs:choice> <xs:attribute name='primary' default='false'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> </xs:element> <xs:element name='metaInfo'> <xs:complexType> <xs:sequence> <xs:element ref='dateModified'/> <xs:sequence minOccurs='0'> <xs:element ref='aggregatedFrom'/> <xs:element ref='dateAggregated'/> </xs:sequence> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='name'> <xs:complexType mixed='true'> <xs:attribute name='set'/> </xs:complexType> </xs:element> <xs:element name='open'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='password'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='port'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='recordInfo'> <xs:complexType> <xs:sequence> <xs:element ref='recordSyntax' maxOccurs='unbounded'/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='recordSyntax'> <xs:complexType> <xs:sequence> <xs:element ref='elementSet' maxOccurs='unbounded'/> </xs:sequence> <xs:attribute name='name'/> <xs:attribute name='identifier'/> </xs:complexType> </xs:element> <xs:element name='restrictions'> <xs:complexType mixed='true'> <xs:attribute name='primary'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='lang'/> </xs:complexType> </xs:element> <xs:element name='schema'> <xs:complexType> <xs:sequence> <xs:element ref='title' minOccurs='0' maxOccurs='unbounded'/> </xs:sequence> <xs:attribute name='identifier' use='required'/> <xs:attribute name='name' use='required'/> <xs:attribute name='location'/> <xs:attribute name='sort' default='false'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='retrieve' default='true'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> </xs:element> <xs:element name='schemaInfo'> <xs:complexType> <xs:sequence> <xs:element ref='schema' maxOccurs='unbounded'/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='serverInfo'> <xs:complexType> <xs:sequence> <xs:element ref='host'/> <xs:element ref='port'/> <xs:element ref='database'/> <xs:element ref='authentication' minOccurs='0'/> </xs:sequence> <xs:attribute name='protocol'/> <xs:attribute name='version'/> <xs:attribute name='transport'/> <xs:attribute name='method'/> </xs:complexType> </xs:element> <xs:element name='set'> <xs:complexType> <xs:sequence> <xs:element ref='title' minOccurs='0' maxOccurs='unbounded'/> </xs:sequence> <xs:attribute name='name' use='required'/> <xs:attribute name='identifier' use='required'/> </xs:complexType> </xs:element> <xs:element name='setting'> <xs:complexType mixed='true'> <xs:attribute name='type' use='required'/> </xs:complexType> </xs:element> <xs:element name='sortKeyword'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> <xs:element name='supports'> <xs:complexType mixed='true'> <xs:attribute name='type' use='required'/> </xs:complexType> </xs:element> <xs:element name='title'> <xs:complexType mixed='true'> <xs:attribute name='primary'> <xs:simpleType> <xs:restriction base='xs:string'> <xs:enumeration value='true'/> <xs:enumeration value='false'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='lang'/> </xs:complexType> </xs:element> <xs:element name='user'> <xs:complexType mixed='true'> </xs:complexType> </xs:element> </xs:schema>

Top of Message | Previous Page | Permalink

Advanced Options


Options

Log In

Log In

Get Password

Get Password


Search Archives

Search Archives


Subscribe or Unsubscribe

Subscribe or Unsubscribe


Archives

July 2017
October 2016
July 2016
August 2014
February 2014
December 2013
November 2013
October 2013
February 2013
January 2013
October 2012
August 2012
April 2012
January 2012
October 2011
May 2011
April 2011
November 2010
October 2010
September 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
October 2009
September 2009
August 2009
July 2009
May 2009
April 2009
March 2009
February 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
January 2007
December 2006
November 2006
October 2006
September 2006
August 2006
July 2006
June 2006
May 2006
April 2006
March 2006
February 2006
January 2006
December 2005
November 2005
October 2005
September 2005
August 2005
July 2005
June 2005
May 2005
April 2005
March 2005
February 2005
January 2005
December 2004
November 2004
October 2004
September 2004
August 2004
July 2004
June 2004
May 2004
April 2004
March 2004
February 2004
January 2004
December 2003
November 2003
October 2003
September 2003
August 2003
July 2003
June 2003
May 2003
April 2003
March 2003
February 2003
January 2003
December 2002
November 2002
October 2002
September 2002
August 2002
July 2002
June 2002
May 2002
April 2002
March 2002
February 2002
January 2002
December 2001
November 2001
October 2001
September 2001
August 2001
July 2001

ATOM RSS1 RSS2



LISTSERV.LOC.GOV

CataList Email List Search Powered by the LISTSERV Email List Manager