session_shared: restart (error recovery) configurable
[metaproxy-moved-to-github.git] / xml / schema / retrievalinfo.rnc
index 7af944d..9d731af 100644 (file)
@@ -1,7 +1,6 @@
 # Metaproxy XML config file schemas
-#  $Id: retrievalinfo.rnc,v 1.3 2006-11-30 23:10:26 marc Exp $
 # 
-#   Copyright (c) 2005-2006, Index Data.
+#   Copyright (C) 2005-2012 Index Data.
 # 
 #   See the LICENSE file for details
 # 
 # see also http://books.xmlschemata.org/relaxng/
 
 namespace y = "http://indexdata.com/yaz"
+
 # need to be in different namespace then metaproxy, otherwise 
 # xslt element definition clashes in XML Schema files
 # namespace y = "http://indexdata.com/metaproxy"
 
 start |= retrievalinfo
 
+marc = element y:marc {
+  attribute inputformat { xsd:string },
+  attribute outputformat { xsd:string },
+  attribute inputcharset { xsd:string }
+}
+
+xslt = element y:xslt {
+  attribute stylesheet { xsd:string }
+}
+
 retrievalinfo = 
   element y:retrievalinfo { 
     attribute version { "1.0" },
@@ -33,17 +43,12 @@ retrievalinfo =
       attribute syntax { xsd:string },
       attribute name { xsd:string }?,
       attribute identifier { xsd:string }?,
-      attribute backendsyntax { xsd:string }?,
-      attribute backendname { xsd:string }?,
-      element y:convert {
-        element y:marc {
-          attribute inputformat { xsd:string },
-          attribute outputformat { xsd:string },
-          attribute inputcharset { xsd:string }
-        },
-        element y:xslt {
-          attribute stylesheet { xsd:string }
-        }?
+      #attribute backendsyntax { xsd:string }?,
+      #attribute backendname { xsd:string }?,
+      element y:backend {
+      attribute syntax { xsd:string },
+      attribute name { xsd:string }?,
+      (marc | xslt)*
       }?
     }+
   }